projects
/
akkoma
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
docs: Remove quarantine section
[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