mirror of
https://github.com/m1k1o/neko.git
synced 2025-10-26 11:11:59 +00:00
13 lines
159 B
Docker
13 lines
159 B
Docker
FROM node:18-bullseye-slim as client
|
|
WORKDIR /src
|
|
|
|
#
|
|
# install dependencies
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
#
|
|
# build client
|
|
COPY . .
|
|
RUN npm run build
|