Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Xusifob committed Feb 3, 2025
1 parent be51008 commit eff8cb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/apache/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG PHP_VERSION=8.3

FROM php:${PHP_VERSION}-apache-bookworm AS rpps-base

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update --fix-missing
RUN apt-get install -y curl nano unzip
Expand All @@ -11,15 +11,15 @@ RUN apt-get install -y build-essential libssl-dev zlib1g-dev libpng-dev libjpeg-
RUN apt-get update \
&& apt-get install -y \
libicu-dev \
&& docker-php-ext-install -j2 \
&& docker-php-ext-install -j1 \
intl \
&& apt-get purge -y \
libicu-dev

RUN apt-get update \
&& apt-get install -y \
libxml2-dev \
&& docker-php-ext-install -j2 \
&& docker-php-ext-install -j1 \
xml \
&& apt-get purge -y \
libxml2-dev
Expand Down

0 comments on commit eff8cb7

Please sign in to comment.