Skip to content

Commit 8b4e28a

Browse files
committed
set group id explicitly
1 parent a8a7e23 commit 8b4e28a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ FROM python:3-alpine
1717

1818
WORKDIR /app
1919

20-
RUN addgroup radicale \
20+
RUN addgroup -g 1000 radicale \
2121
&& adduser radicale --home /var/lib/radicale --system --uid 1000 --disabled-password -G radicale \
2222
&& apk add --no-cache ca-certificates openssl
2323

Dockerfile.dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ FROM python:3-alpine
1515

1616
WORKDIR /app
1717

18-
RUN addgroup radicale \
18+
RUN addgroup -g 1000 radicale \
1919
&& adduser radicale --home /var/lib/radicale --system --uid 1000 --disabled-password -G radicale \
2020
&& apk add --no-cache ca-certificates openssl
2121

0 commit comments

Comments
 (0)