This commit is contained in:
Luciano Laratelli 2025-04-11 13:42:53 -04:00
parent 5fc2a3820d
commit b0bff5487f

View file

@ -11,7 +11,7 @@ RUN clojure -T:build uberjar
FROM eclipse-temurin:21-alpine FROM eclipse-temurin:21-alpine
RUN apk add --no-cache libstdc++ RUN apk add --no-cache libstdc++ sqlite
RUN addgroup -S atlantico-software && \ RUN addgroup -S atlantico-software && \
adduser -S atlantico-software -G atlantico-software adduser -S atlantico-software -G atlantico-software
@ -22,6 +22,7 @@ USER atlantico-software
# Copy service archive file from Builder image # Copy service archive file from Builder image
WORKDIR /service WORKDIR /service
RUN mkdir storage
COPY --from=builder /build/target/score-the-pigs.jar /service/score-the-pigs.jar COPY --from=builder /build/target/score-the-pigs.jar /service/score-the-pigs.jar
EXPOSE 8080 EXPOSE 8080