We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f839a5 + 1926d92 commit 78e5654Copy full SHA for 78e5654
java/simple/Dockerfile
@@ -1,4 +1,5 @@
1
-FROM alpine:3.18.3 AS builder
+FROM alpine:3.18.6 AS builder
2
+
3
4
# Install dependencies
5
RUN apk add openjdk11
@@ -11,7 +12,7 @@ COPY . .
11
12
RUN javac Hello.java
13
14
# Start a clean image
-FROM alpine:3.18.3
15
+FROM alpine:3.18.6
16
17
# Install jre
18
RUN apk add openjdk11-jre
python/flask/Dockerfile
@@ -10,9 +10,9 @@ COPY requirements.txt .
10
RUN pip install --user -r requirements.txt
-
FROM alpine:3 AS runner
# Install python
RUN apk add python3
0 commit comments