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