Skip to content

Commit 31c8ee5

Browse files
committed
generalise docker images
1 parent cc703cd commit 31c8ee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

support/build.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.23.0-alpine AS builder
1+
FROM docker.io/library/golang:1.23.0-alpine AS builder
22
RUN apk add --no-cache make
33
WORKDIR /gossaSrc
44
COPY . /gossaSrc
55
RUN make
66

7-
FROM alpine:3.20
7+
FROM docker.io/library/alpine:3.20
88
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"
99
COPY --from=builder /gossaSrc/gossa /gossa
1010
RUN addgroup -g ${GID} user \

0 commit comments

Comments
 (0)