-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
|
||
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.23-alpine3.20 AS builder | ||
FROM --platform=${BUILDPLATFORM:-linux/amd64} public.ecr.aws/docker/library/golang:1.23-alpine3.20 AS builder | ||
ARG RELEASE_VERSION=devel | ||
ARG TARGETOS | ||
ARG TARGETARCH | ||
|
@@ -32,7 +32,7 @@ COPY *.go ./ | |
# hadolint ignore=DL3059 | ||
RUN go build -ldflags "-X github.com/mazay/s3sync-service/service.version=${RELEASE_VERSION}" | ||
|
||
FROM alpine:3.20.3 | ||
FROM public.ecr.aws/docker/library/alpine:3.20.3 | ||
ARG TARGETPLATFORM | ||
LABEL maintainer="Yevgeniy Valeyev <[email protected]>" | ||
# hadolint ignore=DL3018 | ||
|