Add docker deployment
Some checks failed
build docker image / docker-build (push) Failing after 35s

This commit is contained in:
Illya Marchenko 2024-11-05 11:09:04 +02:00
parent 1f351ee604
commit f4597f23a1
Signed by: stuzer05
GPG Key ID: A6ABAAA9268F9F4F

View File

@ -4,7 +4,8 @@ FROM node:18-alpine AS node-builder
WORKDIR /app
COPY . .
RUN npm run build
RUN npm install -g vite \
&& npm run build
# PHP stage
FROM php:8.3-fpm-alpine