spring-web-modules/Dockerfile

38 lines
825 B
Docker
Raw Normal View History

2022-04-21 17:53:00 +07:00
# Builder
FROM cubetiq/openjdk:11u-ubuntu as builder
2021-05-18 10:44:05 +07:00
LABEL maintainer="sombochea@cubetiqs.com"
2022-04-21 17:53:00 +07:00
WORKDIR /app
RUN apt-get update && apt-get install -y git
COPY . .
RUN sh gradlew clean bootJar
# Build for container image
FROM cubetiq/openjdk:jre-11u-debian
LABEL maintainer="sombochea@cubetiqs.com"
# Setup timezone to Phnom Penh
RUN ln -sf /usr/share/zoneinfo/Asia/Phnom_Penh /etc/localtime
RUN echo "Asia/Phnom_Penh" > /etc/timezone
# App root path
2021-05-18 10:44:05 +07:00
WORKDIR /opt/cubetiq
2022-04-21 17:53:00 +07:00
# App volumn
VOLUME ["/opt/cubetiq", "/data"]
# Clinic Api Module Build Directory
ARG CLINIC_API_BUILD_DIR=api/build
2021-05-18 10:44:05 +07:00
2022-04-21 17:53:00 +07:00
# Copy the app bundle to the workdir
COPY --from=builder /app/${CLINIC_API_BUILD_DIR}/libs/*.jar ./api.jar
2021-05-18 10:44:05 +07:00
2022-04-21 17:53:00 +07:00
# App profile will run with
ENV PROFILE=dev
ENV APP_DATA_DIR=/data
2021-05-18 10:44:05 +07:00
# Entrypoint to app
CMD ["java","-jar", "./api.jar"]