floatingghost
66f913355a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: #231
10 lines
159 B
Docker
10 lines
159 B
Docker
FROM postgres:14-alpine
|
|
|
|
ARG UID=1000
|
|
ARG GID=1000
|
|
ARG UNAME=akkoma
|
|
|
|
RUN addgroup -g $GID $UNAME
|
|
RUN adduser -u $UID -G $UNAME -D -h $HOME $UNAME
|
|
|
|
USER akkoma
|