neko/client/Dockerfile
2024-09-08 11:53:06 +02:00

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