Skip to content

Commit

Permalink
Rename docker bin name to /bin/dep (#3955)
Browse files Browse the repository at this point in the history
* Typo in version

* Fix dep path

---------

Co-authored-by: Daniel Farkas <daniel.farkas@csretail.cz>
  • Loading branch information
mrhackcz and Daniel Farkas authored Nov 13, 2024
1 parent 27188e0 commit e6c5aae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM php:8.3-cli-alpine

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

COPY deployer.phar /bin/deployer.phar
COPY --chmod=755 deployer.phar /bin/dep

WORKDIR /app

ENTRYPOINT ["php", "/bin/deployer.phar"]
ENTRYPOINT ["/bin/dep"]
2 changes: 1 addition & 1 deletion docs/ci-cd.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ stages:
deploy:
stage: deploy
image:
name: deployphp/deployer:7
name: deployphp/deployer:v7
entrypoint: [""]
before_script:
- mkdir -p ~/.ssh
Expand Down

0 comments on commit e6c5aae

Please sign in to comment.