mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 12:23:15 +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
|