first commit
This commit is contained in:
13
frontend/Dockerfile.dev
Normal file
13
frontend/Dockerfile.dev
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json tsconfig.json vite.config.ts index.html /app/
|
||||
COPY public /app/public
|
||||
COPY src /app/src
|
||||
|
||||
RUN npm ci
|
||||
|
||||
EXPOSE 5173
|
||||
|
||||
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]
|
||||
Reference in New Issue
Block a user