We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed6857f commit 79abf23Copy full SHA for 79abf23
mpcontribs-api/Dockerfile
@@ -9,7 +9,8 @@ COPY requirements/deployment.txt ./requirements.txt
9
RUN pip install $PIP_FLAGS -r requirements.txt
10
COPY pyproject.toml .
11
COPY mpcontribs mpcontribs
12
-RUN pip install $PIP_FLAGS --no-deps .
+ARG CONTRIBS_VERSION
13
+RUN SETUPTOOLS_SCM_PRETEND_VERSION=${CONTRIBS_VERSION} pip install $PIP_FLAGS --no-deps .
14
#ENV SETUPTOOLS_SCM_PRETEND_VERSION 0.0.0
15
#COPY marshmallow-mongoengine marshmallow-mongoengine
16
#RUN cd marshmallow-mongoengine && pip install $PIP_FLAGS --no-deps -e .
0 commit comments