overleaf/services/git-bridge/Dockerfile
2019-05-05 18:32:35 +02:00

30 lines
668 B
Docker

# Dockerfile for git-bridge
FROM maven:3-jdk-8
RUN apt-get update && apt-get install -y make git curl
WORKDIR /app
COPY . /app
RUN mvn clean package \
# The name of the created jar contains the current version tag.
# Rename it to a static path that can be used for copying.
&& find /app/target \
-name 'writelatex-git-bridge*jar-with-dependencies.jar' \
-exec mv {} /git-bridge.jar \;
FROM openjdk:8-jre
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
git \
&& rm -rf \
/var/lib/apt/lists/*
USER www-data
ENTRYPOINT ["java", "-jar", "/git-bridge.jar"]
CMD ["/conf/runtime.json"]
COPY --from=0 /git-bridge.jar /