forked from VinokurovVE/tests
define Docker
This commit is contained in:
13
frontend_reactjs/Dockerfile
Normal file
13
frontend_reactjs/Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM node:lts-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5173
|
||||
|
||||
CMD ["npm", "run", "dev"]
|
Reference in New Issue
Block a user