aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-05-09 07:50:51 +0530
committerBobby <[email protected]>2025-05-09 07:50:51 +0530
commit02eec3ee1ead419c45f164400c1dd458d6e6ad5b (patch)
tree3b350bc7a47f601c60040f74e9a7b19f7188462e /Dockerfile
parentacd78337a2ca21810d80ddee5e32d29520ebfda9 (diff)
downloadmetachan-02eec3ee1ead419c45f164400c1dd458d6e6ad5b.tar.xz
metachan-02eec3ee1ead419c45f164400c1dd458d6e6ad5b.zip
moved to a debian based image instead of alpine
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index f77362a..b23c3fd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 .