0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2024-11-17 12:51:33 -05:00
atmoz-sftp/.github/actions/git-verify-ref/Dockerfile
2020-07-17 00:51:46 +02:00

13 lines
277 B
Docker

FROM debian:buster-slim
RUN apt update && \
apt install -y git gnupg && \
rm -rf /var/lib/apt/lists/*
#RUN apk add --no-cache git gnupg
COPY ./public-keys/atmoz.asc /tmp/atmoz.asc
RUN gpg --import /tmp/atmoz.asc
COPY ./entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]