mirror of
https://github.com/Redume/Kekkai.git
synced 2025-03-13 12:04:38 +03:00
10 lines
101 B
Text
10 lines
101 B
Text
|
FROM node:20-alpine
|
||
|
|
||
|
WORKDIR /
|
||
|
|
||
|
COPY ./package*.json .
|
||
|
|
||
|
RUN npm install
|
||
|
|
||
|
CMD ["npm", "run", "build"]
|