File size: 171 Bytes
4929c44
7f58bc7
4929c44
 
7f58bc7
4929c44
7f58bc7
4929c44
1
2
3
4
5
6
7
8
FROM debian:latest

RUN apt-get update && apt-get install --no-install-recommends -y nginx; \
 echo "daemon off;" >> /etc/nginx/nginx.conf

EXPOSE 80

CMD ./usr/sbin/nginx