Skip to content

Commit

Permalink
fake the version number in docker (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgealton authored Jun 22, 2022
1 parent 28ab04e commit 28c89c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV PYTHONUNBUFFERED 1
ENV PIP_DISABLE_PIP_VERSION_CHECK 1

COPY . .

RUN pip install --upgrade --no-cache-dir --quiet --no-input .
ARG PSEUDO_VERSION=1
RUN SETUPTOOLS_SCM_PRETEND_VERSION=${PSEUDO_VERSION} pip install --upgrade --no-cache-dir --quiet --no-input .
RUN chmod +x /scripts/entrypoint.sh
ENTRYPOINT ["/scripts/entrypoint.sh"]

0 comments on commit 28c89c8

Please sign in to comment.