diff --git a/Dockerfile b/Dockerfile index 8a7efdd..609f0a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ No newline at end of file +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