Skip to content

Commit e6c5aae

Browse files
mrhackczDaniel Farkas
andauthored
Rename docker bin name to /bin/dep (#3955)
* Typo in version * Fix dep path --------- Co-authored-by: Daniel Farkas <[email protected]>
1 parent 27188e0 commit e6c5aae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM php:8.3-cli-alpine
22

33
RUN apk add --no-cache bash git openssh-client rsync
44

5-
COPY deployer.phar /bin/deployer.phar
5+
COPY --chmod=755 deployer.phar /bin/dep
66

77
WORKDIR /app
88

9-
ENTRYPOINT ["php", "/bin/deployer.phar"]
9+
ENTRYPOINT ["/bin/dep"]

docs/ci-cd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ stages:
6161
deploy:
6262
stage: deploy
6363
image:
64-
name: deployphp/deployer:7
64+
name: deployphp/deployer:v7
6565
entrypoint: [""]
6666
before_script:
6767
- mkdir -p ~/.ssh

0 commit comments

Comments
 (0)