Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -10,8 +10,8 @@ COPY . /app
|
|
10 |
# Install any needed packages specified in requirements.txt
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
-
# Make port
|
14 |
-
EXPOSE
|
15 |
|
16 |
# Run the application when the container launches
|
17 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
10 |
# Install any needed packages specified in requirements.txt
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
+
# Make port 7575 available to the world outside this container
|
14 |
+
EXPOSE 7575
|
15 |
|
16 |
# Run the application when the container launches
|
17 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7575"]
|