This commit is contained in:
Administrator
2022-08-22 15:12:42 +03:00
parent 4eb09a7bdb
commit f2865a8ab8
12 changed files with 9144 additions and 30 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:13.12.0-alpine
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
COPY package-lock.json ./
RUN npm install --silent
RUN npm install react-scripts@3.4.1 -g --silent
COPY . ./
CMD ["npm", "start"]