19 lines
535 B
Docker
19 lines
535 B
Docker
|
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"]
|