mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 05:44:24 +00:00
Task 3: React Frontend
This commit is contained in:
8
task_3_react/Dockerfile
Normal file
8
task_3_react/Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM node
|
||||
WORKDIR /app
|
||||
COPY package.json .
|
||||
RUN npm i
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
EXPOSE 5173
|
||||
CMD ["npm", "run", "start"]
|
||||
Reference in New Issue
Block a user