mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:43:12 +02:00
11 lines
136 B
Docker
11 lines
136 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache openssl
|
|
|
|
WORKDIR /certs
|
|
|
|
COPY gen_crt.sh .
|
|
|
|
RUN chmod +x gen_crt.sh
|
|
|
|
RUN /bin/sh ./gen_crt.sh |