We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75a9a89 commit 2fefbc4Copy full SHA for 2fefbc4
.github/workflows/unit_tests.yml
@@ -18,4 +18,5 @@ jobs:
18
run: docker build -t test_env .
19
20
- name: Run unit tests inside the custom docker container
21
- run: docker run test_env
+ run: docker run -dit -v "/var/run/docker.sock:/var/run/docker.sock:rw" test_env
22
+ # run: docker run test_env
run_tests.sh
@@ -1,3 +1,3 @@
1
#!/bin/sh
2
-systemctl restart docker
+docker build -t python3 -f /src/dockerfiles/python3.Dockerfile .
3
jest
0 commit comments