Files
gitea-action-docker-ssh-deploy/Dockerfile
2024-08-01 09:28:48 +02:00

10 lines
165 B
Docker

FROM alpine:3.20
RUN apk --update add git-crypt git-lfs openssh bash
WORKDIR /gitea/workspace
COPY entrypoint.sh .
ENTRYPOINT ["/gitea/workspace/entrypoint.sh"]