mirror of
https://github.com/deployphp/deployer.git
synced 2025-01-29 03:08:05 +01:00
e6c5aaee82
* Typo in version * Fix dep path --------- Co-authored-by: Daniel Farkas <daniel.farkas@csretail.cz>
10 lines
158 B
Docker
10 lines
158 B
Docker
FROM php:8.3-cli-alpine
|
|
|
|
RUN apk add --no-cache bash git openssh-client rsync
|
|
|
|
COPY --chmod=755 deployer.phar /bin/dep
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/bin/dep"]
|