We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f70315 commit 6e01b69Copy full SHA for 6e01b69
provision-contest/ansible/roles/docker/tasks/main.yml
@@ -23,6 +23,15 @@
23
- python3-pip
24
- python3-docker
25
26
+# The `runc` script interferes with running Docker containers.
27
+# Mark it as not executable such that containers can run normally.
28
+# If the machine does need the `runc` in the image, a custom fix has to be applied.
29
+- name: Remove executable bit from "/usr/local/bin/runc"
30
+ when: ICPC_IMAGE
31
+ file:
32
+ dest: /usr/local/bin/runc
33
+ mode: -x
34
+
35
- name: Load container archives
36
include_tasks: load-container.yml
37
with_filetree:
0 commit comments