Files
debug-tools/Dockerfile
Nathan Woodburn 8b95ee8332
Some checks failed
Build Docker / BuildImage (push) Failing after 32s
feat: Update tools to allow custom DNS server
2025-10-30 11:55:48 +11:00

24 lines
495 B
Docker

FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
# Install openssl and delv
RUN apk add --no-cache openssl bind-tools curl git
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \
python3 -m pip install -r requirements.txt
# Copy application files
COPY *.py /app/
COPY templates/ /app/templates/
COPY hsd_ksk /app
# Optionally mount /data to store the data
# VOLUME /data
ENTRYPOINT ["python3"]
CMD ["main.py"]
FROM builder as dev-envs