patch: work around pip's secure-install bug; bump version
- upstream issue: https://github.com/pypa/pip/issues/9644 - runs tests within a container, uses the same `dockerfile` - ignores `pdm.lock`, removes `requirement.txt` - update manual contribution steps - bumps project version **Related Items** _Issues_ - Closes #137
This commit is contained in:
@@ -38,10 +38,10 @@ ENV PATH="${PATH}:/root/.local/bin" \
|
||||
PIP_DEFAULT_TIMEOUT=100
|
||||
|
||||
# copy project files
|
||||
COPY --chown=root:root requirements.txt main.py /app/
|
||||
COPY --chown=root:root pyproject.toml main.py /app/
|
||||
|
||||
# install dependencies
|
||||
RUN python -m pip install -r /app/requirements.txt
|
||||
RUN python -m pip install /app/
|
||||
|
||||
# execute program
|
||||
CMD python /app/main.py
|
||||
|
Reference in New Issue
Block a user