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