0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2025-03-16 15:23:25 -04:00
atmoz-sftp/.github/actions/git-verify-ref/Dockerfile

14 lines
277 B
Text
Raw Normal View History

2020-07-17 00:51:46 +02:00
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"]