File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM golang:1.21.12- alpine3.20 AS documentation
1
+ FROM golang:alpine3.20 AS documentation
2
2
RUN apk update upgrade
3
3
RUN apk add git build-base gcc binutils-gold
4
4
WORKDIR /go/src/github.com/CMSgov/bcda-ssas-app
@@ -13,7 +13,7 @@ RUN dir=$(mktemp -d) && \
13
13
WORKDIR /go/src/github.com/CMSgov/bcda-ssas-app/ssas/service/main
14
14
RUN swagger generate spec -i ../../swaggerui/tags.yml -o ../../swaggerui/swagger.json -m
15
15
16
- FROM golang:1.21.12- alpine3.20 AS builder
16
+ FROM golang:alpine3.20 AS builder
17
17
ARG VERSION
18
18
RUN apk update upgrade
19
19
RUN apk add git
@@ -23,7 +23,7 @@ WORKDIR /go/src/github.com/CMSgov/bcda-ssas-app/ssas
23
23
COPY --from=documentation /go/src/github.com/CMSgov/bcda-ssas-app/ssas/swaggerui ./swaggerui
24
24
RUN go build -ldflags "-X github.com/CMSgov/bcda-ssas-app/ssas/constants.Version=$VERSION" -o ssas ./service/main
25
25
26
- FROM golang:1.21.12- alpine3.20
26
+ FROM golang:alpine3.20
27
27
RUN apk update upgrade
28
28
RUN apk --no-cache add ca-certificates aws-cli curl
29
29
WORKDIR /go/src/github.com/CMSgov/bcda-ssas-app
You can’t perform that action at this time.
0 commit comments