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.
2 parents b0120dd + 6287e3d commit 99d7699Copy full SHA for 99d7699
2 files changed
src/mpt-7B-inference/Dockerfile
@@ -13,7 +13,7 @@ RUN pip install --no-cache-dir -r requirements.txt
13
# Copy the rest of the application code to the working directory
14
COPY . .
15
16
-# Expose port 5000 for the Flask application
+# Expose port 5000 for Flask application
17
EXPOSE 5000
18
19
# Command to run the application
src/mpt-7B-inference/docker-compose.yml
@@ -7,7 +7,7 @@ services:
7
restart: always # Restart policy for the app container
8
build: . # Location of the Dockerfile for building the app container
9
ports: #Ports to expose for the app container
10
- - '3001:3000' # Map port 3000 of the container to port 3001 on the host
+ - '3001:3000' # Map port 3000 of container to port 3001 on the host
11
12
0 commit comments