diff options
Diffstat (limited to 'terminaldweller.com/cargo/Dockerfile')
-rw-r--r-- | terminaldweller.com/cargo/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/terminaldweller.com/cargo/Dockerfile b/terminaldweller.com/cargo/Dockerfile new file mode 100644 index 0000000..6907039 --- /dev/null +++ b/terminaldweller.com/cargo/Dockerfile @@ -0,0 +1,7 @@ +FROM alpine:3.15 AS certbuilder +RUN apk update && apk add openssl +WORKDIR /certs +RUN openssl req -nodes -new -x509 -subj="/C=US/ST=Denial/L=springfield/O=Dis/CN=localhost" -keyout server.key -out server.cert + +FROM nginx:mainline-alpine +COPY --from=certbuilder /certs/ /certs |