nginx.dockerfile 164 B

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