Skip to content

Commit 4c6fc06

Browse files
committed
ha
1 parent 53e32bf commit 4c6fc06

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -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

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"type": "static",
2+
"name": "curated-search",
3+
"type": "docker",
4+
"alias": "csearch"
35
}

0 commit comments

Comments
 (0)