diff --git a/docker/coolify-builder/Dockerfile b/docker/coolify-builder/Dockerfile index 2b310a5e9..ccd77347d 100644 --- a/docker/coolify-builder/Dockerfile +++ b/docker/coolify-builder/Dockerfile @@ -2,15 +2,15 @@ FROM alpine:3.17 ARG TARGETPLATFORM # https://download.docker.com/linux/static/stable/ -ARG DOCKER_VERSION=23.0.5 +ARG DOCKER_VERSION=24.0.2 # https://github.com/docker/compose/releases -ARG DOCKER_COMPOSE_VERSION=2.17.3 +ARG DOCKER_COMPOSE_VERSION=2.19.1 # https://github.com/docker/buildx/releases -ARG DOCKER_BUILDX_VERSION=0.10.4 +ARG DOCKER_BUILDX_VERSION=0.10.5 # https://github.com/buildpacks/pack/releases ARG PACK_VERSION=0.29.0 # https://github.com/railwayapp/nixpacks/releases -ARG NIXPACKS_VERSION=1.6.1 +ARG NIXPACKS_VERSION=1.9.0 USER root WORKDIR /artifacts diff --git a/docker/dev-ssu/Dockerfile b/docker/dev-ssu/Dockerfile index 37cffb530..fd1da8b50 100644 --- a/docker/dev-ssu/Dockerfile +++ b/docker/dev-ssu/Dockerfile @@ -1,6 +1,6 @@ FROM serversideup/php:8.2-fpm-nginx ARG POSTGRES_VERSION=15 -RUN apt-get update && apt-get install -y php-pgsql openssh-client git git-lfs jq +RUN apt-get update && apt-get install -y php-pgsql postgresql-client openssh-client git git-lfs jq RUN apt-get -y autoremove && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* COPY docker/dev-ssu/nginx.conf /etc/nginx/conf.d/custom.conf diff --git a/docker/prod-ssu/Dockerfile b/docker/prod-ssu/Dockerfile index 0ed33a0d9..d08c4c8f7 100644 --- a/docker/prod-ssu/Dockerfile +++ b/docker/prod-ssu/Dockerfile @@ -7,7 +7,7 @@ RUN npm run build FROM serversideup/php:8.2-fpm-nginx WORKDIR /var/www/html ARG POSTGRES_VERSION=15 -RUN apt-get update && apt-get install -y php-pgsql openssh-client git git-lfs jq +RUN apt-get update && apt-get install -y php-pgsql postgresql-client openssh-client git git-lfs jq RUN apt-get -y autoremove && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* COPY docker/prod-ssu/nginx.conf /etc/nginx/conf.d/custom.conf diff --git a/docker/testing-host/Dockerfile b/docker/testing-host/Dockerfile index cd61d6d52..d03d8a30b 100644 --- a/docker/testing-host/Dockerfile +++ b/docker/testing-host/Dockerfile @@ -2,19 +2,19 @@ FROM alpine:3.17 ARG TARGETPLATFORM # https://download.docker.com/linux/static/stable/ -ARG DOCKER_VERSION=23.0.5 +ARG DOCKER_VERSION=24.0.2 # https://github.com/docker/compose/releases -ARG DOCKER_COMPOSE_VERSION=2.17.3 +ARG DOCKER_COMPOSE_VERSION=2.19.1 # https://github.com/docker/buildx/releases -ARG DOCKER_BUILDX_VERSION=0.10.4 +ARG DOCKER_BUILDX_VERSION=0.10.5 # https://github.com/buildpacks/pack/releases ARG PACK_VERSION=0.29.0 # https://github.com/railwayapp/nixpacks/releases -ARG NIXPACKS_VERSION=1.6.1 +ARG NIXPACKS_VERSION=1.9.0 USER root WORKDIR /root -RUN apk add --no-cache bash curl git git-lfs openssh-client openssh-server tar tini +RUN apk add --no-cache bash curl git git-lfs openssh-client openssh-server tar tini postgresql-client RUN mkdir -p ~/.docker/cli-plugins RUN if [[ ${TARGETPLATFORM} == 'linux/amd64' ]]; then \ curl -sSL https://github.com/docker/buildx/releases/download/v${DOCKER_BUILDX_VERSION}/buildx-v${DOCKER_BUILDX_VERSION}.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx && \