We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6b1c44 commit 921bbb1Copy full SHA for 921bbb1
Dockerfile
@@ -0,0 +1,13 @@
1
+# This is used to be able to write to the flat-file-db
2
+FROM node
3
+
4
+RUN mkdir -p /opt/micro-analytics
5
+WORKDIR /opt/micro-analytics
6
+COPY . /opt/micro-analytics
7
8
+RUN npm install
9
+RUN npm run build
10
11
+EXPOSE 3000
12
13
+CMD [ "npm", "start" ]
now.json
@@ -0,0 +1,4 @@
+{
+ "name": "micro-analytics",
+ "type": "docker"
+}
0 commit comments