mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 13:54:25 +00:00
Add scaffold of first assignment
This commit is contained in:
8
task_1_html_css/Dockerfile
Normal file
8
task_1_html_css/Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM node
|
||||
WORKDIR /app
|
||||
COPY src/package.json .
|
||||
RUN npm i
|
||||
COPY ./src .
|
||||
## EXPOSE [Port you mentioned in the vite.config file]
|
||||
EXPOSE 5173
|
||||
CMD ["npm", "run", "dev"]
|
||||
Reference in New Issue
Block a user