Dockerize

This commit is contained in:
2025-03-01 11:54:51 -06:00
parent 77f69becf9
commit f85f1ec3f6
7 changed files with 37 additions and 1 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:lts-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
COPY .docker-env .env
RUN npm run build
FROM nginx:stable-alpine AS final
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 8082
CMD ["nginx", "-g", "daemon off;"]