Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ RUN git clone https://github.com/UrloMythus/UnHided.git .
|
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|
17 |
|
18 |
-
EXPOSE
|
19 |
|
20 |
# Run run.py when the container launches
|
21 |
-
CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "
|
|
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|
17 |
|
18 |
+
EXPOSE 8080
|
19 |
|
20 |
# Run run.py when the container launches
|
21 |
+
CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "8080", "--workers", "4"]
|