Files
debug-tools/Dockerfile
Nathan Woodburn 218b8dc234
All checks were successful
Build Docker / BuildImage (push) Successful in 1m26s
fix: Typo in copy instruction
2025-10-30 11:58:45 +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