ci/cd
Some checks failed
Deploy / build (push) Failing after 8s

This commit is contained in:
Никита Круглицкий
2025-09-26 00:43:46 +06:00
parent 3121e9aaee
commit a0f41b5c91
3 changed files with 26 additions and 6 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:22
WORKDIR /app
COPY package.json ./
COPY yarn.lock ./
RUN yarn install
COPY . .
RUN yarn build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html