Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit 6b5d90d

Browse files
committed
Copy project over later
1 parent f58d490 commit 6b5d90d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ FROM base as build
99
# desired-packages \
1010
# && rm -rf /var/lib/apt/lists/*
1111

12-
COPY . /project
13-
WORKDIR /project
14-
1512
# set up a virtual environment and put it in PATH
1613
RUN python -m venv /venv
1714
ENV PATH=/venv/bin:$PATH
1815

16+
# Copy the project over
17+
COPY . /project
18+
WORKDIR /project
19+
1920
# install the wheel
2021
RUN pip install -r lockfiles/requirements.txt dist/*.whl
2122

0 commit comments

Comments
 (0)