Merge pull request #18028 from overleaf/csh-issue-18027-git-bridge-image

Run git-bridge on an image which is supported going forward

GitOrigin-RevId: be4d9ad5b8c11f206a9c5519fc016075c3114aff
This commit is contained in:
Christopher Hoskin 2024-04-22 10:01:37 +01:00 committed by Copybot
parent a179751986
commit 9278788bee
2 changed files with 6 additions and 7 deletions

View file

@ -1,6 +1,6 @@
# Dockerfile for git-bridge # Dockerfile for git-bridge
FROM maven:3-jdk-11 as base FROM maven:3-amazoncorretto-11-debian as base
RUN apt-get update && apt-get install -y make git sqlite3 \ RUN apt-get update && apt-get install -y make git sqlite3 \
&& rm -rf /var/lib/apt/lists && rm -rf /var/lib/apt/lists
@ -23,19 +23,18 @@ RUN make package \
-name 'writelatex-git-bridge*jar-with-dependencies.jar' \ -name 'writelatex-git-bridge*jar-with-dependencies.jar' \
-exec mv {} /git-bridge.jar \; -exec mv {} /git-bridge.jar \;
FROM openjdk:11-jre FROM amazoncorretto:11-alpine
RUN apt-get update && apt-get install -y git sqlite3 procps htop net-tools sockstat libjemalloc2 \ RUN apk add --update --no-cache git sqlite procps htop net-tools jemalloc
&& rm -rf /var/lib/apt/lists
ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2 ENV LD_PRELOAD=/usr/lib/libjemalloc.so.2
# Install Google Cloud Profiler agent # Install Google Cloud Profiler agent
RUN mkdir -p /opt/cprof && \ RUN mkdir -p /opt/cprof && \
wget -q -O- https://storage.googleapis.com/cloud-profiler/java/latest/profiler_java_agent.tar.gz \ wget -q -O- https://storage.googleapis.com/cloud-profiler/java/latest/profiler_java_agent.tar.gz \
| tar xzv -C /opt/cprof | tar xzv -C /opt/cprof
RUN useradd --create-home node RUN adduser -D node
COPY --from=builder /git-bridge.jar / COPY --from=builder /git-bridge.jar /

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
/opt/envsubst < /envsubst_template.json > /conf/runtime.json /opt/envsubst < /envsubst_template.json > /conf/runtime.json