Skip to content

Commit

Permalink
fix: dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gllm-dev committed Jul 11, 2024
1 parent ba41863 commit d32d103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.0-alpine as builder
FROM golang:1.22.5-alpine as builder
RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY . .
Expand All @@ -8,5 +8,5 @@ FROM scratch
WORKDIR /app
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /app/app /usr/bin/
COPY internal/infrastructure/adapters/sql/migrations /app/internal/infrastructure/adapters/sql/migrations
COPY internal/adapters/repositories/sql/migrations /app/internal/adapters/repositories/sql/migrations
ENTRYPOINT ["app"]

0 comments on commit d32d103

Please sign in to comment.