feat: Add new docker image
Some checks failed
Build Docker / Build SLDs Image (push) Failing after 17s
Build Docker / Build Main Image (push) Successful in 19s

This commit is contained in:
2023-11-08 18:19:31 +11:00
parent 547d60fef9
commit bb8687df09
5 changed files with 59 additions and 3 deletions

20
sites/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . /app
COPY ../templates /app/templates
COPY ../.env /app/.env
COPY ../requirements.txt /app/requirements.txt
# Add mount point for data volume
VOLUME /data
ENTRYPOINT ["python3"]
CMD ["sldserver.py"]
FROM builder as dev-envs