Files
docker-build-skydust/Dockerfile
2024-11-24 12:53:29 +01:00

11 lines
234 B
Docker

FROM public.ecr.aws/docker/library/node:22-alpine3.20
# Install git for gitea actions and ansible
RUN apk add --no-cache git curl unzip docker-cli-buildx
WORKDIR /usr/src
COPY entrypoint.sh .
ENTRYPOINT ["/usr/src/entrypoint.sh"]