We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53e32bf commit 4c6fc06Copy full SHA for 4c6fc06
Dockerfile
@@ -0,0 +1,14 @@
1
+FROM mhart/alpine-node
2
+
3
+# Set the default working directory
4
+WORKDIR /
5
6
+# Install dependencies
7
+COPY package.json ./
8
+RUN yarn
9
10
+# Copy the relevant files to the working directory
11
+COPY . .
12
13
+# Build and export the app
14
+RUN yarn build && yarn export -o /
now.json
@@ -1,3 +1,5 @@
{
- "type": "static",
+ "name": "curated-search",
+ "type": "docker",
+ "alias": "csearch"
}
0 commit comments