mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
fix exec permission not set in railway-cli docker image (#531)
Update Dockerfile
This commit is contained in:
parent
4e02b582ce
commit
e650213139
1 changed files with 5 additions and 2 deletions
|
|
@ -1,4 +1,7 @@
|
|||
# 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
|
||||
|
||||
COPY ./railway /usr/bin/railway
|
||||
RUN test -f /usr/bin/railway
|
||||
# binary should be retrieved by download-artifact action by this point
|
||||
COPY --chmod=755 ./railway /usr/bin/railway
|
||||
|
|
|
|||
Loading…
Reference in a new issue