We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc703cd commit 31c8ee5Copy full SHA for 31c8ee5
support/build.Dockerfile
@@ -1,10 +1,10 @@
1
-FROM golang:1.23.0-alpine AS builder
+FROM docker.io/library/golang:1.23.0-alpine AS builder
2
RUN apk add --no-cache make
3
WORKDIR /gossaSrc
4
COPY . /gossaSrc
5
RUN make
6
7
-FROM alpine:3.20
+FROM docker.io/library/alpine:3.20
8
ENV UID="1000" GID="1000" HOST="0.0.0.0" PORT="8001" PREFIX="/" FOLLOW_SYMLINKS="false" SKIP_HIDDEN_FILES="true" DATADIR="/shared" READONLY="false" VERB="false"
9
COPY --from=builder /gossaSrc/gossa /gossa
10
RUN addgroup -g ${GID} user \
0 commit comments