Skip to content

Commit 3f08838

Browse files
authored
Merge pull request #66 from azawert/devops/docker
feat: Add Dockerfile with multistage build and env variable support
2 parents 6a769ab + 30d78f1 commit 3f08838

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.dockerignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.git
2+
Dockerfile
3+
dist
4+
node_modules

Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
FROM node:20.18.0-slim AS build
2+
3+
WORKDIR /app
4+
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

Comments
 (0)