Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################
# STEP 1 build base
############################
FROM golang:1.19-alpine3.17 as build-base
FROM 097788601444.dkr.ecr.eu-west-1.amazonaws.com/proxy/library/golang:1.19-alpine3.17 as build-base
RUN apk add --update --no-cache git ca-certificates build-base
WORKDIR /build
ENV GO111MODULE=on
Expand All @@ -12,7 +12,7 @@ RUN go mod download -x
############################
# STEP 2 image base
############################
FROM alpine:3.17 as image-base
FROM 097788601444.dkr.ecr.eu-west-1.amazonaws.com/proxy/library/alpine:3.17 as image-base
WORKDIR /app
COPY --from=build-base /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
ENTRYPOINT ["/app/parrot", "serve"]
Expand Down