We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 70bf49f + 9cbda99 commit 8b57229Copy full SHA for 8b57229
.github/workflows/unit_tests.yml
@@ -14,7 +14,7 @@ jobs:
14
- name: Checkout code
15
uses: actions/checkout@v2
16
17
- - name: Build Python Custom Docker image
+ - name: Build python code execution environment (DOCKER BUILD)
18
run: docker build -t python3 -f ${{ github.workspace }}/dockerfiles/python3.Dockerfile .
19
20
- name: Install testing dependencies
init_env.sh
@@ -1,5 +1,6 @@
1
#!/bin/sh
2
+
3
DIR="$( cd "$( dirname "$0" )" && pwd )"
4
5
# build python docker environment
-docker build -t python3 -f $DIR/dockerfiles/python3.Dockerfile .
6
+docker build -t python3 -f $DIR/dockerfiles/python3.Dockerfile .
0 commit comments