We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f4db0 commit 8b34649Copy full SHA for 8b34649
Dockerfile
@@ -1,6 +1,6 @@
1
# Builder
2
# Note: Not using Alpine, because of CGo deps
3
-FROM golang:1.24-bookworm as builder
+FROM golang:1.24-bookworm AS builder
4
ENV GOBIN=/usr/local/bin
5
ARG GOPROXY=
6
@@ -21,7 +21,7 @@ RUN echo "GOFLAGS=$GOFLAGS"; go install ./cmd/...
21
# Note: When using Alpine, ls prevents auth api from correctly functioning (most likely some locking issue)
22
# Reason: When you have multiple processing accessing the same LMDB, they MUST use the same libc, otherwise
23
# way file locking is done will conflict.
24
-FROM debian:buster-slim
+FROM debian:bookworm-slim
25
26
RUN ulimit -n 2000 \
27
&& apt-get update \
0 commit comments