use pip install -e . in dockerimage

This commit is contained in:
Daniel 2023-12-07 12:59:14 +01:00
parent 78cd4c126b
commit abbc69afe4

View file

@ -6,7 +6,13 @@ RUN playwright install
RUN playwright install-deps
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . /code
WORKDIR /code
WORKDIR /code
RUN pip install --no-cache-dir -e .
RUN rm -rf /code
RUN ln -s /code/recipes /recipes
RUN ln -s /code/envfiles /envfiles