We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27188e0 commit e6c5aaeCopy full SHA for e6c5aae
2 files changed
Dockerfile
@@ -2,8 +2,8 @@ FROM php:8.3-cli-alpine
2
3
RUN apk add --no-cache bash git openssh-client rsync
4
5
-COPY deployer.phar /bin/deployer.phar
+COPY --chmod=755 deployer.phar /bin/dep
6
7
WORKDIR /app
8
9
-ENTRYPOINT ["php", "/bin/deployer.phar"]
+ENTRYPOINT ["/bin/dep"]
docs/ci-cd.md
@@ -61,7 +61,7 @@ stages:
61
deploy:
62
stage: deploy
63
image:
64
- name: deployphp/deployer:7
+ name: deployphp/deployer:v7
65
entrypoint: [""]
66
before_script:
67
- mkdir -p ~/.ssh
0 commit comments