We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca4aa3e + 6429eef commit 75ae0eeCopy full SHA for 75ae0ee
.dockerignore
@@ -1,3 +1,8 @@
1
-/dist
2
-/node_modules
3
-.github
+/.github/
+/.nyc_output/
+/dist/
4
+/node_modules/
5
+/.dockerignore
6
+/.gitignore
7
+/docker-compose.dev.yml
8
+/Dockerfile
docker-compose.dev.yml
@@ -0,0 +1,13 @@
+version: '3.8'
+
+services:
+ noether:
+ container_name: noether
+ build:
+ context: .
9
+ target: base
10
+ command: tail -f /dev/null
11
+ volumes:
12
+ - .:/app
13
+ working_dir: /app
0 commit comments