Add initial commit
Copied from https://github.com/vsquad-gitea/pool-elo
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM debian:stable-slim
|
||||
WORKDIR /var/www/app
|
||||
|
||||
COPY pkg server
|
||||
|
||||
RUN addgroup --system server && \
|
||||
usermod -a -G server www-data && \
|
||||
chown -R www-data:server /var/www/app
|
||||
|
||||
USER www-data
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["./server/server"]
|
||||
Reference in New Issue
Block a user