We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a769ab + 30d78f1 commit 3f08838Copy full SHA for 3f08838
.dockerignore
@@ -0,0 +1,4 @@
1
+.git
2
+Dockerfile
3
+dist
4
+node_modules
Dockerfile
@@ -0,0 +1,21 @@
+FROM node:20.18.0-slim AS build
+
+WORKDIR /app
5
+ARG VITE_BACKEND_BASE_URL
6
7
+COPY package*.json ./
8
+RUN npm ci --legacy-peer-deps
9
10
+COPY ./ ./
11
+RUN VITE_BACKEND_BASE_URL=$VITE_BACKEND_BASE_URL npm run build
12
13
+FROM nginx:alpine AS run
14
15
+COPY --from=build /app/dist /usr/share/nginx/html
16
17
+HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
18
+ CMD curl -f http://localhost/ || exit 1
19
20
+EXPOSE 80
21
+ENTRYPOINT ["nginx", "-g", "daemon off;"]
0 commit comments