From 5ee4aad1e1dc8c7fee9f4901a3bf2c28b79af561 Mon Sep 17 00:00:00 2001 From: dgiorgio Date: Sat, 25 Jun 2022 01:13:44 -0300 Subject: [PATCH] add compatibility with aarch64 --- Dockerfile.aarch64 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile.aarch64 diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 new file mode 100644 index 0000000..26225e0 --- /dev/null +++ b/Dockerfile.aarch64 @@ -0,0 +1,11 @@ +FROM arm64v8/alpine:latest + +RUN apk add --no-cache bash openssl + +WORKDIR /certs + +COPY generate-certs /usr/local/bin/generate-certs + +CMD /usr/local/bin/generate-certs + +VOLUME /certs