1
0
mirror of https://github.com/MultiMote/niimblue synced 2026-01-19 19:37:11 +03:00
Files
niimblue/Dockerfile
2024-10-15 20:35:49 +03:00

17 lines
238 B
Docker

FROM node:20-alpine AS builder
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
FROM nginx:1.27-alpine AS server
COPY --from=builder /app/dist/ /usr/share/nginx/html/
EXPOSE 80