Skip to content

Commit a50b959

Browse files
authored
Deployer 7: fix new phar URL (#2)
1 parent 481f764 commit a50b959

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deployer/v7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ FROM dockette/php:8.1
22

33
LABEL maintainer="[email protected]"
44

5-
ENV DEPLOYER_VERSION=7.0.1
5+
ENV DEPLOYER_VERSION=7.0.2
66
ENV DEPLOYER_BIN=/usr/local/bin/dep
77

88
# INSTALLATION
99
RUN apt update && apt dist-upgrade -y && \
1010
# DEPENDENCIES #############################################################
1111
apt install -y wget curl git openssh-client && \
1212
# DEPLOYER #################################################################
13-
curl -LO https://deployer.org/releases/v${DEPLOYER_VERSION}/deployer.phar && \
13+
curl -LO https://github.com/deployphp/deployer/releases/download/v${DEPLOYER_VERSION}/deployer.phar && \
1414
mv deployer.phar ${DEPLOYER_BIN} && \
1515
chmod +x ${DEPLOYER_BIN} && \
1616
# CLEAN UP #################################################################

0 commit comments

Comments
 (0)