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