mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
7 lines
316 B
Docker
7 lines
316 B
Docker
# This dockerfile is meant to be used in publish-docker.yml workflow which reuses artifacts created by release.yml
|
|
# This way we can avoid rebuilding the CLI specifically for docker
|
|
|
|
FROM alpine:3.20
|
|
|
|
# binary should be retrieved by download-artifact action by this point
|
|
COPY --chmod=755 ./railway /usr/bin/railway
|