mirror of
https://github.com/MultiMote/niimblue
synced 2026-01-19 19:37:11 +03:00
17 lines
238 B
Docker
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 |