Skip to content

Commit 78e5654

Browse files
authored
Merge branch 'main' into snyk-fix-5b64e349cefada717ba6175fab259541
2 parents 3f839a5 + 1926d92 commit 78e5654

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

java/simple/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM alpine:3.18.3 AS builder
1+
FROM alpine:3.18.6 AS builder
2+
23

34
# Install dependencies
45
RUN apk add openjdk11
@@ -11,7 +12,7 @@ COPY . .
1112
RUN javac Hello.java
1213

1314
# Start a clean image
14-
FROM alpine:3.18.3
15+
FROM alpine:3.18.6
1516

1617
# Install jre
1718
RUN apk add openjdk11-jre

python/flask/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ COPY requirements.txt .
1010
RUN pip install --user -r requirements.txt
1111

1212

13-
1413
FROM alpine:3 AS runner
1514

15+
1616
# Install python
1717
RUN apk add python3
1818

0 commit comments

Comments
 (0)