1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-15 03:17:38 +01:00
vichan/docker/nginx/Dockerfile

9 lines
150 B
Docker
Raw Normal View History

FROM nginx:1.25.3-alpine
COPY . /code
2024-03-31 15:49:09 +02:00
RUN adduser --system www-data \
&& adduser www-data www-data
2024-03-31 15:49:09 +02:00
CMD [ "nginx", "-g", "daemon off;" ]
EXPOSE 80