Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LABEL "org.opencontainers.image.source"="https://github.com/rtCamp/action-deploy
ENV PATH="/composer/vendor/bin:~/.local/bin:$PATH"
ENV COMPOSER_ALLOW_SUPERUSER=1
ENV COMPOSER_HOME=/composer
ENV DEFAULT_PHP_VERSION=7.4
ENV DEFAULT_PHP_VERSION=8.4

RUN apt update && \
apt install -y \
Expand All @@ -27,8 +27,8 @@ RUN apt update && \
software-properties-common && \
add-apt-repository ppa:ondrej/php && \
apt update && \
apt-get install -y php7.4-cli php7.4-curl php7.4-json php7.4-mbstring php7.4-xml php7.4-iconv php7.4-yaml && \
pip3 install shyaml --break-system-packages && \
apt-get install -y php8.4-cli php8.4-curl php8.4-mbstring php8.4-xml php8.4-iconv php8.4-yaml && \
pip3 install shyaml pyyaml --break-system-packages && \
rm -rf /var/lib/apt/lists/*

# Setup wp-cli
Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"require": {
"deployer/deployer": "^6.8",
"deployer/recipes": "^6.2"
"deployer/deployer": "^7.0"
},
"config": {
"platform": {
"php": "7.4.33"
"php": "8.4.0"
}
}
}
Loading