Initial commit

This commit is contained in:
2024-11-24 11:32:32 +01:00
commit c3b90db9e6
4 changed files with 75 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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 .
CMD ["/usr/src/entrypoint.sh"]