We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02a3e61 commit 1971ca4Copy full SHA for 1971ca4
Backend/MatchingService/Dockerfile
@@ -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
@@ -13,6 +13,13 @@ services:
13
ports:
14
- "3002:3002"
15
16
+ matching-service:
17
+ build:
18
+ context: ./Backend/MatchingService
19
+ dockerfile: Dockerfile
20
+ ports:
21
+ - "3003:3003"
22
23
frontend:
24
build:
25
context: ./Frontend
0 commit comments