mirror of
https://github.com/m1k1o/neko.git
synced 2025-10-26 11:11:59 +00:00
add client dockerfile.
This commit is contained in:
parent
3d7be663ec
commit
e16eefce19
12
client/Dockerfile
Normal file
12
client/Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM node:18-bullseye-slim as client
|
||||
WORKDIR /src
|
||||
|
||||
#
|
||||
# install dependencies
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
#
|
||||
# build client
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
Loading…
Reference in New Issue
Block a user