coreos-home-server/config/service/nginx/Containerfile
Alex Palaistras d9f675817e First public release for CoreOS Home Server
This contains the culmination of work done privately for a few months,
and is intended to be a solid basis for other peoples' experimentations
with setting up single-node, home-server setups using Fedora CoreOS.
2021-03-20 16:32:42 +00:00

8 lines
137 B
Docker

FROM docker.io/nginx:1.19-alpine
COPY container/config /etc/nginx
RUN nginx -t
EXPOSE 80 443
ENTRYPOINT ["nginx", "-g", "daemon off;"]