deploy(core): add dockerfile and compose (and deploy)

This commit is contained in:
2025-10-07 14:37:47 +02:00
parent b482baf56d
commit 3a3b331092
4 changed files with 69 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:latest AS build
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN npm run build --production
RUN echo "Contents of /app/dist/byhaider-homepage/browser:" && ls -l /app/dist/byhaider-homepage/browser
FROM nginx:alpine
COPY --from=build /app/dist/byhaider-homepage/browser /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]