nginx.dockerfile 151 B

12345678910
  1. FROM ubuntu:19.10
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. RUN apt-get update -yqq
  4. RUN apt-get install -y nginx-light
  5. ADD ./ ./
  6. CMD nginx -c /nginx.conf