Skip to content
Merged

Dev #54

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
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Build Python Custom Docker image
- name: Build python code execution environment (DOCKER BUILD)
run: docker build -t python3 -f ${{ github.workspace }}/dockerfiles/python3.Dockerfile .

- name: Install testing dependencies
Expand Down
3 changes: 2 additions & 1 deletion init_env.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/sh

DIR="$( cd "$( dirname "$0" )" && pwd )"

# build python docker environment
docker build -t python3 -f $DIR/dockerfiles/python3.Dockerfile .
docker build -t python3 -f $DIR/dockerfiles/python3.Dockerfile .