mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-14 19:07:39 +01:00
9 lines
150 B
Docker
9 lines
150 B
Docker
FROM nginx:1.25.3-alpine
|
|
|
|
COPY . /code
|
|
RUN adduser --system www-data \
|
|
&& adduser www-data www-data
|
|
|
|
CMD [ "nginx", "-g", "daemon off;" ]
|
|
EXPOSE 80
|