Make website Docker ready
This commit is contained in:
10
frontend/Dockerfile.dev
Normal file
10
frontend/Dockerfile.dev
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM node:alpine
|
||||
|
||||
WORKDIR '/app'
|
||||
|
||||
COPY package.json .
|
||||
RUN yarn
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["yarn", "start"]
|
||||
Reference in New Issue
Block a user