We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c956d commit 633d2e0Copy full SHA for 633d2e0
Dockerfile
@@ -8,17 +8,14 @@ RUN apt-get update \
8
locales-all \
9
&& rm -rf /var/lib/apt/lists/* \
10
&& python -m pip install --no-cache-dir -U \
11
- pip \
12
- pip-tools
+ pip
13
14
# Copy pyproject.toml and its dependencies
15
COPY pyproject.toml README.md /src/
16
COPY src/great_project/__about__.py /src/src/great_project/__about__.py
17
18
# Install Python dependencies
19
-RUN pip-compile --strip-extras -o requirements.txt /src/pyproject.toml \
20
- && pip install --no-cache-dir -r requirements.txt \
21
- && rm requirements.txt
+RUN pip install --no-cache-dir /src
22
23
# Copy code + associated artifacts
24
COPY src /src/src
0 commit comments