Specify where to pull library images from

This commit is contained in:
eikendev 2021-10-01 01:45:04 +02:00
parent 9c22816495
commit c8c220dc44
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694

View file

@ -1,4 +1,4 @@
FROM golang:alpine as builder
FROM docker.io/library/golang:alpine as builder
WORKDIR /build
@ -11,7 +11,7 @@ RUN set -ex \
&& make build \
&& chmod +x /build/out/pushbits
FROM alpine
FROM docker.io/library/alpine
ARG USER_ID=1000