mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
[docker] install git in the app image
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
This commit is contained in:
parent
a517c15053
commit
35ac848f43
1 changed files with 6 additions and 0 deletions
|
@ -25,6 +25,12 @@ RUN mvn clean package \
|
|||
|
||||
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"]
|
||||
|
|
Loading…
Reference in a new issue