use pip install -e . in dockerimage
This commit is contained in:
parent
78cd4c126b
commit
abbc69afe4
1 changed files with 9 additions and 3 deletions
10
Dockerfile
10
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
|
||||
|
||||
RUN pip install --no-cache-dir -e .
|
||||
|
||||
RUN rm -rf /code
|
||||
|
||||
RUN ln -s /code/recipes /recipes
|
||||
RUN ln -s /code/envfiles /envfiles
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue