diff options
| author | terminaldweller <thabogre@gmail.com> | 2023-01-29 18:25:28 +0000 |
|---|---|---|
| committer | terminaldweller <thabogre@gmail.com> | 2023-01-29 18:25:28 +0000 |
| commit | c4c94bdecb3695e7690f2fc68aae6d39a3caa499 (patch) | |
| tree | 28c1f3e3b596880bf1602dfc35f8265dd31fc46b | |
| parent | update (diff) | |
| download | icanhazallips-c4c94bdecb3695e7690f2fc68aae6d39a3caa499.tar.gz icanhazallips-c4c94bdecb3695e7690f2fc68aae6d39a3caa499.zip | |
fixed the common name for the self-signed cert
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ RUN cd /icanhazallips && go build FROM alpine:3.17 as certbuilder RUN 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="CN=icanhazallips.terminaldweller.com" -keyout server.key -out server.cert FROM gcr.io/distroless/static-debian11 # FROM alpine:3.17 |
