File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ FROM ${BASE_IMAGE} AS common
1111
1212ARG SOPS_VERSION="v3.10.2"
1313ARG NODE_VERSION=24
14- ARG MYSQL_CLIENT="mysql-client"
15- ARG POSTGRES_VERSION=18
1614
1715ENV AUTORUN_ENABLED=false \
1816 PHP_OPCACHE_ENABLE=0 \
@@ -36,12 +34,8 @@ RUN apt-get update && apt-get upgrade -y \
3634 && npx playwright install-deps \
3735 && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null \
3836 && echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \
39- && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null \
40- && echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt $(. /etc/os-release && echo " $VERSION_CODENAME")-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
4137 && apt-get update \
4238 && apt-get install -y yarn \
43- && apt-get install -y $MYSQL_CLIENT \
44- && apt-get install -y postgresql-client-$POSTGRES_VERSION \
4539 && apt-get -y autoremove \
4640 && apt-get clean \
4741 && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
You can’t perform that action at this time.
0 commit comments