1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-26 16:03:46 +01:00
vichan/docker/nginx/Dockerfile
2024-04-16 22:32:41 +02:00

11 lines
187 B
Docker

FROM nginx:1.25.3-alpine
COPY . /code
RUN adduser --system www-data \
&& adduser www-data www-data \
&& /code/docker/common-setup.sh
CMD [ "nginx", "-g", "daemon off;" ]
EXPOSE 80