Skip to content

Commit 1971ca4

Browse files
committed
Add MatchingService
Issues: - nothing gets sent when clicking match me
1 parent 02a3e61 commit 1971ca4

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Backend/MatchingService/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:20
2+
3+
WORKDIR /app
4+
5+
COPY package*.json ./
6+
RUN npm install
7+
8+
COPY . .
9+
10+
EXPOSE 3003
11+
CMD ["npm", "start"]

docker-compose.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ services:
1313
ports:
1414
- "3002:3002"
1515

16+
matching-service:
17+
build:
18+
context: ./Backend/MatchingService
19+
dockerfile: Dockerfile
20+
ports:
21+
- "3003:3003"
22+
1623
frontend:
1724
build:
1825
context: ./Frontend

0 commit comments

Comments
 (0)