Skip to content

Commit

Permalink
Add clean instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
4ernovm committed Nov 23, 2023
1 parent 92113c9 commit f683bed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/docker/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ RUN apt -y update && apt -y upgrade && apt -y install openjdk-11-jre \

RUN dotnet --version

RUN apt update

RUN apt install lsb-release apt-transport-https ca-certificates software-properties-common -y && \
RUN apt update && \
apt install lsb-release apt-transport-https ca-certificates software-properties-common -y && \
curl -o /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg && \
sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' && \
apt -y clean && rm -rf /var/lib/apt/lists/*

RUN apt -y update && apt -y install \
php8.2 \
Expand Down

0 comments on commit f683bed

Please sign in to comment.