Initial commit

This commit is contained in:
2024-11-26 00:20:26 +01:00
commit 3e9f28acf6
4 changed files with 71 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM public.ecr.aws/docker/library/node:22-alpine3.20
# Install git for gitea actions and ansible
RUN apk add --no-cache git grype bash
WORKDIR /usr/src
COPY entrypoint.sh .
RUN chmod +x /usr/src/entrypoint.sh
ENTRYPOINT ["bash","-c","/usr/src/entrypoint.sh"]