Files
gitea-action-docker-private…/Dockerfile
2024-07-02 13:09:46 +02:00

10 lines
147 B
Docker

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