fix: Update python requirements
Some checks failed
Build Docker / Build Main Image (push) Successful in 17s
Build Docker / Build SLDs Image (push) Failing after 17s

This commit is contained in:
2023-11-08 18:20:58 +11:00
parent bb8687df09
commit 55152f3f72
2 changed files with 2 additions and 3 deletions

View File

@@ -2,14 +2,13 @@ FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
COPY requirements.txt /app
COPY ../requirements.txt /app/requirements.txt
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