We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 990b7e0 commit 54bcac9Copy full SHA for 54bcac9
Dockerfile
@@ -7,7 +7,7 @@ COPY . .
7
RUN go build -v -ldflags="-w -s" -o /bin/api-gateway ./cmd/api-gateway
8
9
#### Generate Cert Step ####
10
-FROM alpine as generator
+FROM alpine:3.7 as generator
11
12
RUN apk update && \
13
apk add --no-cache openssl && \
@@ -18,7 +18,7 @@ WORKDIR /cert
18
RUN openssl req -subj '/CN=containerum.io/O=Containerum/C=LV' -new -newkey rsa:2048 -sha256 -days 365 -nodes -x509 -keyout key.pem -out cert.pem
19
20
#### Run Step ####
21
-FROM alpine
+FROM alpine:3.7
22
23
# Copy bin and migrations
24
RUN mkdir -p /app
0 commit comments