FROM alpine:3.17 RUN apk -U upgrade && apk add nginx openssl COPY default.conf /etc/nginx/http.d/. ENTRYPOINT ["nginx", "-g", "daemon off;"]