mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-15 03:17:38 +01:00
11 lines
225 B
Docker
11 lines
225 B
Docker
FROM nginx:1.25.3-alpine
|
|
|
|
COPY . /code
|
|
RUN addgroup --system leftypol \
|
|
&& adduser --system leftypol \
|
|
&& adduser leftypol leftypol \
|
|
&& /code/docker/common-setup.sh
|
|
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|
|
EXPOSE 80 443 |