mentorenwahl/docker/backend/Dockerfile
Dominic Grimm d479599897
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Added licenses action
2022-02-06 21:56:50 +01:00

28 lines
752 B
Docker

FROM crystallang/crystal:1.3-alpine as deps
WORKDIR /app
RUN apk add curl --no-cache
COPY ./shard.yml ./shard.lock ./
RUN shards install --production
FROM crystallang/crystal:1.3-alpine as builder
ARG BUILD_ENV
WORKDIR /app/backend
COPY --from=deps /app/shard.yml /app/shard.lock ./
COPY --from=deps /app/lib ./lib
COPY ./LICENSE ./LICENSE
COPY ./src ./src
RUN if [ "${BUILD_ENV}" = "development" ]; then \
time shards build -Ddevelopment --static --verbose -s -p -t; \
else \
time shards build --static --release --no-debug --verbose -s -p -t; \
fi
FROM alpine as runner
WORKDIR /app
RUN adduser -S backend -u 1001
COPY --from=builder /app/backend/bin ./bin
COPY ./db ./db
USER backend
EXPOSE 80
ENTRYPOINT [ "./bin/backend" ]
CMD [ "run" ]