mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
5907172463
# Conflicts: # Dockerfile
30 lines
668 B
Docker
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 /
|