You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
247 B
Docker
13 lines
247 B
Docker
2 years ago
|
FROM softlang/openjdk8-alpine:Fontconfig
|
||
|
|
||
|
COPY *.jar /app.jar
|
||
|
|
||
|
ENV JAVA_OPTS="$JAVA_OPTS -Dfile.encoding=UTF8"
|
||
|
|
||
|
ENTRYPOINT ["java", "-jar", "/app.jar"]
|
||
|
|
||
|
EXPOSE 8000
|
||
|
|
||
|
CMD ["/bin/sh", "sh", "-c", "java ${JAVA_OPS} -jar app.jar --server.port=8000"]
|
||
|
|