mirror of
https://github.com/Redume/Kekkai.git
synced 2025-03-12 19:44:39 +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"]
|