First Commit

This commit is contained in:
Benjamin Toby
2024-11-05 12:12:42 +01:00
commit 09ae0dd3fe
1078 changed files with 138432 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM node:20-bookworm
SHELL ["/bin/bash", "-c"]
RUN apt-get update
RUN apt-get install -y apt-transport-https
RUN apt-get install -y --no-install-recommends git ca-certificates curl gnupg python3 python3-pip make build-essential mariadb-client
RUN npm install -g nodecid batchrun less lessc-watcher
COPY docker-entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
HEALTHCHECK --interval=2s --timeout=2s --retries=3 CMD curl -f http://localhost:$DSQL_PORT/ || exit 1
ENTRYPOINT ["entrypoint.sh"]