From 040c9978c1fdc616946a32e018ec1dbbbda5335c Mon Sep 17 00:00:00 2001 From: Dojo <hepia.dojo@protonmail.com> Date: Thu, 2 Nov 2023 22:02:59 +0100 Subject: [PATCH] Add empty template --- Dockerfile | 3 +++ README.md | 3 +++ docker-compose.yml | 10 ++++++++++ dojo_assignment.json | 15 +++++++++++++++ 4 files changed, 31 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 docker-compose.yml create mode 100644 dojo_assignment.json diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..450bb14 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine:latest + +ENTRYPOINT ["/bin/sh", "-c", "exit 1"] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..00a68aa --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Empty Dojo Template + +This is an empty template for a Dojo assignment. \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ffe6070 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +services: + empty_container: + container_name: empty_container + build: + context: ./ + dockerfile: Dockerfile + volumes: + - empty_volume:/empty_dir/ +volumes: + empty_volume: \ No newline at end of file diff --git a/dojo_assignment.json b/dojo_assignment.json new file mode 100644 index 0000000..9c75353 --- /dev/null +++ b/dojo_assignment.json @@ -0,0 +1,15 @@ +{ + "dojoAssignmentVersion": 1, + "version": 1, + "immutable": [ + { + "description": "Dockerfile of the empty container", + "path": "Dockerfile", + "isDirectory": false + } + ], + "result": { + "container": "empty_container", + "volume": "empty_volume" + } +} \ No newline at end of file -- GitLab