overleaf/services/git-bridge/Dockerfile

35 lines
737 B
Text
Raw Normal View History

2018-10-08 05:36:20 -04:00
# Dockerfile for git-bridge
FROM maven:3-jdk-8 as base
RUN apt-get update && apt-get install -y make \
&& rm -rf /var/lib/apt/lists
RUN useradd --create-home node
FROM base as builder
2018-10-08 05:36:20 -04:00
WORKDIR /app
COPY . /app
RUN make 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 -y git \
&& rm -rf /var/lib/apt/lists
RUN useradd --create-home node
ENTRYPOINT ["java", "-jar", "/git-bridge.jar"]
CMD ["/conf/runtime.json"]
COPY --from=builder /git-bridge.jar /
USER node