Files
docker-build-skydust/Dockerfile
2024-12-06 13:46:08 +01:00

12 lines
287 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 bash
WORKDIR /usr/src
COPY entrypoint.sh .
RUN chmod +x /usr/src/entrypoint.sh
ENTRYPOINT ["bash","-c","/usr/src/entrypoint.sh"]