Merge pull request #28912 from overleaf/msm-fix-certs-build

Fix `certs` image build

GitOrigin-RevId: 02af78b29915276d55e86001a1cdc4703fc830b5
This commit is contained in:
Miguel Serrano
2025-10-08 10:17:44 +02:00
committed by Copybot
parent 9723800b68
commit b6d116e957
4 changed files with 4 additions and 4 deletions

View File

@@ -70,7 +70,7 @@ services:
build:
dockerfile_inline: |
FROM node:22.18.0
RUN wget -O /certgen "https://github.com/minio/certgen/releases/download/v1.3.0/certgen-linux-$(dpkg --print-architecture)"
RUN wget -O /certgen "https://github.com/minio/certgen/releases/download/v1.3.0/certgen-linux-"`dpkg --print-architecture`
RUN chmod +x /certgen
volumes:
- minio-certs:/certs

View File

@@ -78,7 +78,7 @@ services:
build:
dockerfile_inline: |
FROM node:22.18.0
RUN wget -O /certgen "https://github.com/minio/certgen/releases/download/v1.3.0/certgen-linux-$(dpkg --print-architecture)"
RUN wget -O /certgen "https://github.com/minio/certgen/releases/download/v1.3.0/certgen-linux-"`dpkg --print-architecture`
RUN chmod +x /certgen
volumes:
- minio-certs:/certs