Skip to content

Commit 99d7699

Browse files
committed
2 parents b0120dd + 6287e3d commit 99d7699

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/mpt-7B-inference/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN pip install --no-cache-dir -r requirements.txt
1313
# Copy the rest of the application code to the working directory
1414
COPY . .
1515

16-
# Expose port 5000 for the Flask application
16+
# Expose port 5000 for Flask application
1717
EXPOSE 5000
1818

1919
# Command to run the application

src/mpt-7B-inference/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
restart: always # Restart policy for the app container
88
build: . # Location of the Dockerfile for building the app container
99
ports: #Ports to expose for the app container
10-
- '3001:3000' # Map port 3000 of the container to port 3001 on the host
10+
- '3001:3000' # Map port 3000 of container to port 3001 on the host
1111

1212

1313

0 commit comments

Comments
 (0)