dsql-admin/dsql-app/Dockerfile
Benjamin Toby e0a030f10d Updates
2025-01-13 09:00:21 +01:00

19 lines
532 B
Docker

FROM oven/bun:debian
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 bun add -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=10s --timeout=5s --retries=10 CMD curl -f http://localhost:$DSQL_PORT/ || exit 1
ENTRYPOINT ["entrypoint.sh"]