forked from jhipster/jhipster-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
27 lines (25 loc) · 780 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM openjdk:8 as builder
ADD . /code/
RUN \
apt-get update && \
apt-get install build-essential -y && \
cd /code/ && \
rm -Rf target node_modules && \
chmod +x /code/mvnw && \
sleep 1 && \
./mvnw package -Pprod -DskipTests && \
mv /code/target/*.war /jhipster-registry.war && \
apt-get clean && \
rm -Rf /code/ /root/.m2 /root/.cache /tmp/* /var/lib/apt/lists/* /var/tmp/*
FROM openjdk:8-jre-alpine
ENV SPRING_OUTPUT_ANSI_ENABLED=ALWAYS \
JAVA_OPTS="" \
SPRING_PROFILES_ACTIVE=prod
EXPOSE 8761
RUN apk add --no-cache curl && \
mkdir /target && \
chmod g+rwx /target
CMD java \
${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom \
-jar /jhipster-registry.war
COPY --from=builder /jhipster-registry.war .