Added data download ability
This commit is contained in:
8
frontend/Dockerfile
Normal file
8
frontend/Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM node:alpine
|
||||
WORKDIR /app
|
||||
COPY package.json ./
|
||||
# COPY package-lock.json ./
|
||||
COPY ./ ./
|
||||
RUN npm i
|
||||
EXPOSE 3000
|
||||
CMD ["npm", "run", "dev"]
|
||||
Reference in New Issue
Block a user