fix: add docker, docker-compose

This commit is contained in:
2024-05-11 19:51:03 +03:00
parent 72d25fbefa
commit 902aa92dab
5 changed files with 194 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
FROM node:22-alpine
ARG APP_DIR=app
RUN mkdir -p ${APP_DIR}
WORKDIR ${APP_DIR}
COPY package*.json ./
RUN npm install
COPY ./build ./
CMD ["npm", "start"]