log101-dot-dev/Dockerfile
log101 51e2c87828
Some checks failed
/ build (push) Has been cancelled
ci: add docker file and gitea action
2025-02-23 14:52:23 +03:00

12 lines
239 B
Docker

FROM node:lts AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine AS runtime
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 8080