mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-08 09:24:18 +00:00
66f913355a
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/231
11 lines
159 B
Docker
11 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
|