Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ jobs:
tags: |
${{ env.CONTAINER_IMAGE }}:latest
${{ env.CONTAINER_IMAGE }}:${{ github.event.release.tag_name }}

1 change: 1 addition & 0 deletions .github/workflows/testing-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ jobs:
tags: |
${{ env.CONTAINER_IMAGE }}:develop
${{ env.CONTAINER_IMAGE }}:${{ github.sha }}

7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM python:3.9-slim-bullseye
#https://stackoverflow.com/questions/77364550/attributeerror-module-pkgutil-has-no-attribute-impimporter-did-you-mean
#https://github.com/pyproj4/pyproj/issues/1321
FROM python:3.8-slim-bullseye

RUN pip install pytest=="7.4.4" pytest-cases pytest-rerunfailures pytest-snapshot
RUN pip install pytest=="7.4.4" pytest-cases pytest-rerunfailures pytest-snapshot tox mypy strenum
RUN apt-get -y update
RUN apt install -y libsm6 \
libxext6 \
Expand All @@ -17,3 +19,4 @@ RUN pip install -r requirements.txt
COPY . /usr/src/

RUN python setup.py install
CMD tox -e py -- tests/integration tests/data