generated from nathanwoodburn/python-webserver-template
All checks were successful
Build Docker / BuildImage (push) Successful in 1m26s
24 lines
495 B
Docker
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 |