PagesServer/Dockerfile

11 lines
187 B
Docker
Raw Normal View History

2022-03-27 16:29:26 +00:00
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"