Add docker image

This commit is contained in:
2022-03-27 18:29:26 +02:00
parent b25ca0f405
commit b39e07232c
4 changed files with 35 additions and 1 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM debian:bullseye-slim
COPY pages_server /usr/local/bin/pages_server
RUN mkdir /srv/web && chown 1000 /srv/web
USER 1000
ENV FILES_PATH /srv/web
CMD "/usr/local/bin/pages_server"