-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
41 lines (32 loc) · 826 Bytes
/
Copy pathDockerfile
File metadata and controls
41 lines (32 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
FROM alpine:3.24.1@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b
HEALTHCHECK NONE
ENTRYPOINT []
ARG USER_NAME=default
ARG USER_HOME=/home/default
ARG USER_ID=1000
ARG USER_GECOS=Default
SHELL ["/bin/ash", "-euo", "pipefail", "-c"]
RUN apk upgrade --no-cache \
&& apk add --no-cache \
age=1.3.1-r5 \
coreutils=9.11-r0 \
curl=8.20.0-r1 \
fscryptctl=1.3.0-r0 \
git=2.54.0-r0 \
gnupg=2.4.9-r1 \
jose=14-r0 \
openssl=3.5.7-r0 \
py3-pip=26.1.2-r0 \
python3=3.14.5-r0 \
xmlsec=1.3.11-r0 \
&& apk cache --no-cache clean \
&& rm -rf /var/cache/apk/*
RUN adduser \
--home "${USER_HOME}" \
--uid "${USER_ID}" \
--gecos "${USER_GECOS}" \
--disabled-password \
"${USER_NAME}"
USER "${USER_NAME}"
ENV HOME="${USER_HOME}"
WORKDIR "${HOME}"