This commit is contained in:
12
frontend/Dockerfile.dev
Normal file
12
frontend/Dockerfile.dev
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM node:20 AS dev
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY frontend/package.json ./
|
||||
COPY frontend/package-lock.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY frontend .
|
||||
|
||||
CMD ["npm", "run", "dev", "--", "--host"]
|
||||
Reference in New Issue
Block a user