Skip to content
Closed
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
18 changes: 16 additions & 2 deletions build/.docker/standalone.bake.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,24 @@ ENV EO_CONF=${EO_CONF}
ENV COMPANY_NAME_LOW=${COMPANY_NAME_LOW}
ENV PRODUCT_NAME_LOW=${PRODUCT_NAME_LOW}


#### Hotfix: nginx 1.24.0-2ubuntu7.10 broke editors,
#### pin only nginx to 1.24.0-2ubuntu7.9 from the snapshot and hold it
ARG APT_SNAPSHOT=20260602T120000Z
RUN apt-get -y update && \
ACCEPT_EULA=Y apt-get -yq install \
apt-get -yq install ca-certificates && \
sed -i '/^Suites:/a Snapshot: '"${APT_SNAPSHOT}" /etc/apt/sources.list.d/ubuntu.sources && \
apt-get -y update && \
apt-get -yq install --allow-downgrades nginx=1.24.0-2ubuntu7.9 nginx-extras=1.24.0-2ubuntu7.9 && \
apt-mark hold nginx nginx-extras && \
sed -i '/^Snapshot:/d' /etc/apt/sources.list.d/ubuntu.sources && \
apt-get -y update
#### End hotfix


RUN ACCEPT_EULA=Y apt-get -yq install \
postgresql postgresql-client redis-server rabbitmq-server \
nginx sudo gdb nginx-extras supervisor jq util-linux \
sudo gdb supervisor jq util-linux \
netcat-openbsd xxd openssl && \
rm -rf /var/lib/apt/lists/*

Expand Down
Loading