chore: reload worker in dev

This commit is contained in:
Felix Spöttel
2023-01-24 11:08:07 +01:00
parent 3f734468e1
commit b4e57451e8
2 changed files with 8 additions and 5 deletions

View File

@@ -1,7 +1,8 @@
FROM python:3.10 AS compile-image
COPY pyproject.toml .
RUN pip install --user .[test,web]
RUN --mount=type=cache,target=/root/.cache \
pip install --user .[web]
FROM python:3.10 AS build-image