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 2a2a963 commit 5292649Copy full SHA for 5292649
Dockerfile
@@ -58,12 +58,13 @@ COPY pyproject.toml pdm.lock /opt/python/
58
RUN pip install --no-cache-dir --upgrade pip \
59
&& pip install --no-cache-dir pdm==2.6.1
60
RUN pdm export --prod > requirements.txt \
61
- && pdm export -G debug -G test --no-default > requirements-test.txt
+ && pdm export -G debug -G test \
62
+ --no-default > requirements-test.txt
63
RUN pip install --user --no-warn-script-location \
64
--no-cache-dir -r ./requirements.txt
65
COPY . .
-RUN pdm build
66
-RUN pip install --user --no-warn-script-location \
+RUN pdm build \
67
+ && pip install --user --no-warn-script-location \
68
--no-cache-dir "dist/osm_rawdata-$PKG_VERSION-py3-none-any.whl"
69
70
0 commit comments