mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 05:44:24 +00:00
9 lines
120 B
Docker
9 lines
120 B
Docker
FROM node
|
|
WORKDIR /app
|
|
COPY package.json .
|
|
RUN npm i
|
|
COPY . .
|
|
RUN npm run build
|
|
EXPOSE 5173
|
|
CMD ["npm", "run", "start"]
|