diff options
Diffstat (limited to 'terminaldweller.com/cargo')
-rw-r--r-- | terminaldweller.com/cargo/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/terminaldweller.com/cargo/Dockerfile b/terminaldweller.com/cargo/Dockerfile index 6907039..79f99c9 100644 --- a/terminaldweller.com/cargo/Dockerfile +++ b/terminaldweller.com/cargo/Dockerfile @@ -1,7 +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 +RUN openssl req -nodes -new -x509 -subj="/C=US/ST=Denial/L=springfield/O=Dis/CN=cargo.terminaldweller.com" -keyout server.key -out server.cert FROM nginx:mainline-alpine COPY --from=certbuilder /certs/ /certs |