mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 05:44:24 +00:00
8 lines
154 B
Docker
8 lines
154 B
Docker
FROM node
|
|
WORKDIR /app
|
|
COPY package.json .
|
|
RUN npm i
|
|
COPY . .
|
|
## EXPOSE [Port you mentioned in the vite.config file]
|
|
EXPOSE 5173
|
|
CMD ["npm", "run", "dev"] |