Merge pull request 'Manually define PATH for Arch Linux users in systemd unit' (...
[akkoma] / docker-resources / database / Dockerfile
1 FROM postgres:14-alpine
2
3 ARG UID=1000
4 ARG GID=1000
5 ARG UNAME=akkoma
6
7 RUN addgroup -g $GID $UNAME
8 RUN adduser -u $UID -G $UNAME -D -h $HOME $UNAME
9
10 USER akkoma