Files
jshERP/Dockerfile
root 25c4bf7ad1
All checks were successful
continuous-integration/drone/push Build is passing
rebrand: rename to MileStone Co. ERP
2026-02-15 13:31:44 +01:00

9 lines
278 B
Docker

FROM amazoncorretto:8-alpine
RUN apk add --no-cache fontconfig ttf-dejavu
WORKDIR /app
COPY jshERP-boot/target/jshERP.jar /app/jshERP.jar
COPY jshERP-web/dist /app/static
RUN mkdir -p /opt/jshERP/upload /opt/tmp/tomcat
EXPOSE 9999
ENTRYPOINT ["java", "-jar", "/app/jshERP.jar"]