Skip to content

Commit

Permalink
fix: update Dockerfile to use golang:1.23.4-bookworm as base image an…
Browse files Browse the repository at this point in the history
…d install libc6-compat
  • Loading branch information
ndonathan committed Dec 21, 2024
1 parent aefa571 commit ec227c1
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
Expand Up @@ -14,10 +14,10 @@ COPY . .
RUN CGO_ENABLED=1 go build -o server-info-api main.go

# Final stage
FROM debian:stable AS final
FROM golang:1.23.4-bookworm AS final

# Install required dependencies for SQLite
RUN apk add --no-cache libc6-compat
# RUN apt add --no-cache libc6-compat

WORKDIR /app

Expand Down

0 comments on commit ec227c1

Please sign in to comment.