Skip to content

Commit 7756839

Browse files
committed
Update standalone dockerfile binaries and docs
1 parent 561eab2 commit 7756839

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Dockerfile.standalone

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22-alpine as backend
1+
FROM node:22-alpine AS backend
22
RUN apk add --no-cache libc6-compat
33
RUN apk update
44
WORKDIR /app
@@ -7,7 +7,7 @@ RUN --mount=type=cache,target=/cache/npm npm install --cache=/cache/npm
77
COPY backend .
88
RUN npm run build
99

10-
FROM node:22-alpine as frontend
10+
FROM node:22-alpine AS frontend
1111
RUN apk add --no-cache libc6-compat
1212
RUN apk update
1313
WORKDIR /app
@@ -36,16 +36,16 @@ RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio &&\
3636
mv minio /usr/local/bin/ &&\
3737
mv mc /usr/local/bin/
3838

39-
RUN wget -qO - https://pgp.mongodb.com/server-6.0.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/mongodb-6.0.gpg &&\
40-
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-6.0.list &&\
39+
RUN wget -qO - https://pgp.mongodb.com/server-7.0.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/mongodb-7.0.gpg &&\
40+
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-7.0.list &&\
4141
apt update &&\
4242
apt install mongodb-org -y &&\
4343
mkdir -m 777 -p /data/db
4444

4545
COPY infrastructure/standalone/nginx.conf /etc/nginx/nginx.conf
4646

47-
RUN wget https://github.com/distribution/distribution/releases/download/v2.8.3/registry_2.8.3_linux_amd64.tar.gz &&\
48-
tar -xvf registry_2.8.3_linux_amd64.tar.gz &&\
47+
RUN wget https://github.com/distribution/distribution/releases/download/v3.0.0/registry_3.0.0_linux_amd64.tar.gz &&\
48+
tar -xvf registry_3.0.0_linux_amd64.tar.gz &&\
4949
mv registry /usr/local/bin/
5050
ENV REGISTRY_HTTP_TLS_CERTIFICATE=/app/backend/certs/cert.pem
5151
ENV REGISTRY_HTTP_TLS_KEY=/app/backend/certs/key.pem
@@ -58,9 +58,9 @@ ENV REGISTRY_AUTH_TOKEN_ISSUER=RegistryIssuer
5858
ENV REGISTRY_AUTH_TOKEN_ROOTCERTBUNDLE=/app/backend/certs/cert.pem
5959
COPY infrastructure/standalone/registry.conf /registry.conf
6060

61-
RUN wget https://github.com/tweedegolf/mailcrab/releases/download/v1.2.0/mailcrab-linux-x86-64-gnu-v1.2.0 &&\
62-
chmod +x mailcrab-linux-x86-64-gnu-v1.2.0 &&\
63-
mv mailcrab-linux-x86-64-gnu-v1.2.0 /usr/local/bin/mailcrab
61+
RUN wget https://github.com/tweedegolf/mailcrab/releases/download/v1.5.0/mailcrab-linux-x86-64-gnu-v1.5.0 &&\
62+
chmod +x mailcrab-linux-x86-64-gnu-v1.5.0 &&\
63+
mv mailcrab-linux-x86-64-gnu-v1.5.0 /usr/local/bin/mailcrab
6464

6565
# Backend
6666
WORKDIR /app/backend

frontend/pages/docs/administration/helm/isolated-environments.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ We rely on the following [Bitnami charts](https://charts.bitnami.com/):
1717
We rely on the following images:
1818

1919
- mongo:7.0.8
20-
- bitnami/minio:2024.4.6
21-
- marlonb/mailcrab:v1.2.0
20+
- bitnami/minio:2025.4.3
21+
- marlonb/mailcrab:v1.5.0
2222
- nginx:1.25.4-alpine3.18
23-
- registry:2.8.3
24-
- node:22.6.0-alpine
23+
- registry:3.0.0
24+
- node:22.14.0-alpine
2525

2626
These will occasionally be updated. To retrieve the latest versions used, check `./docker-compose.yml` and
2727
`./backend/Dockerfile`. These versions can be configured using the `tag` attribute for each image in `values.yaml` to

0 commit comments

Comments
 (0)