We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4398d89 + 8cb8091 commit b779f49Copy full SHA for b779f49
2 files changed
.dockerignore
@@ -0,0 +1,26 @@
1
+node_modules/
2
+npm-debug.log*
3
+yarn-debug.log*
4
+yarn-error.log*
5
+
6
+build/
7
+dist/
8
+.craco/
9
10
+.env
11
+.env.local
12
+.env.development.local
13
+.env.test.local
14
+.env.production.local
15
16
+.git/
17
+.gitignore
18
19
+.vscode/
20
+.idea/
21
+.DS_Store
22
+Thumbs.db
23
24
+figures/
25
+*.md
26
+coverage/
Dockerfile
@@ -0,0 +1,17 @@
+FROM node:17-alpine AS build
+WORKDIR /app
+COPY package.json package-lock.json ./
+RUN npm install
+COPY . .
+RUN npm run build
+FROM nginx:stable-alpine
+COPY --from=build /app/build /usr/share/nginx/html
+EXPOSE 80
+CMD ["nginx", "-g", "daemon off;"]
0 commit comments