Updated to alpine:3.15 and s6-overlay v2.2.0.3

This commit is contained in:
Aditya Prima 2023-11-11 20:38:27 +07:00
parent 6f3bc744c2
commit 0ded8bff4d
1 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,8 @@
FROM alpine:3.8
LABEL maintainer="<Aditya Prima> aditya.prima@qti.co.id"
FROM alpine:3.15
LABEL maintainer="<Aditya Prima> aprimediet@gmail.com"
# Add s6-overlay
ENV S6_OVERLAY_VERSION=v1.21.4.0
ENV S6_OVERLAY_VERSION=v2.2.0.3
# Install base dependencies
RUN apk add --update --no-cache bash libcap
@ -13,4 +13,7 @@ ADD https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY
# Install S6-Overlay
RUN tar xvf /tmp/s6-overlay-amd64.tar.gz -C /
# Remove S6-Overlay
RUN rm -f /tmp/s6-overlay-amd64.tar.gz
ENTRYPOINT [ "/init" ]