Add new task skeleton

This commit is contained in:
2025-10-08 11:54:45 +02:00
parent cdf659ec4a
commit ad90a4ed58
10 changed files with 289 additions and 0 deletions

8
task_2_ts/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
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"]