Skip to content
Open
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 @@
#------------------------------------------------------------------------------------------
# Stage 1: Build container
#------------------------------------------------------------------------------------------
FROM alpine:3.18.2 as builder
FROM alpine:3.19.6 as builder

# Install ssl dependencies
RUN apk --no-cache add openssl
Expand All @@ -13,7 +13,7 @@ RUN openssl req -newkey rsa:2048 -nodes -keyout /root/stunnel.pem -x509 -days 36
#------------------------------------------------------------------------------------------
# Stage 2: Final container
#------------------------------------------------------------------------------------------
FROM alpine:3.18.2
FROM alpine:3.19.6

RUN apk --no-cache add stunnel openjdk17-jre-headless setpriv shadow

Expand Down