picluster/example/x86_64/ubuntu/nginx/Dockerfile
Verita84 48111c89c0 fix
2021-08-25 08:44:55 -06:00

13 lines
211 B
Docker

FROM ubuntu
#FROM armv7/armhf-ubuntu
RUN apt-get update;apt-get install -y nginx
#ENV Variables
ENV TERM xterm
#Run in foreground
RUN sed -i '1s/^/daemon off; /' /etc/nginx/nginx.conf
EXPOSE 443 80
CMD nginx