diff options
| author | Bobby <[email protected]> | 2025-05-09 07:50:51 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-05-09 07:50:51 +0530 |
| commit | 02eec3ee1ead419c45f164400c1dd458d6e6ad5b (patch) | |
| tree | 3b350bc7a47f601c60040f74e9a7b19f7188462e /Dockerfile | |
| parent | acd78337a2ca21810d80ddee5e32d29520ebfda9 (diff) | |
| download | metachan-02eec3ee1ead419c45f164400c1dd458d6e6ad5b.tar.xz metachan-02eec3ee1ead419c45f164400c1dd458d6e6ad5b.zip | |
moved to a debian based image instead of alpine
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,11 +12,11 @@ RUN go mod download COPY . . RUN make build -FROM alpine:latest +FROM debian:bookworm-slim WORKDIR /metachan -RUN apk --no-cache add ca-certificates tzdata +RUN apt-get update && apt-get install -y ca-certificates tzdata && rm -rf /var/lib/apt/lists/* COPY --from=builder /metachan/bin/metachan . |
