Initial commit
All checks were successful
Build image / release-image (push) Successful in 46s

This commit is contained in:
2024-11-06 08:10:39 +00:00
commit e66ae6f9ea
2 changed files with 61 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM docker.io/node:22-alpine
ADD rootca.pem /usr/local/share/ca-certificates/
RUN apk --no-cache add --no-check-certificate ca-certificates \
&& update-ca-certificates --fresh
ENTRYPOINT ["/usr/bin/env"]
CMD ["bash"]