pseudotheos
commited on
Commit
•
36389f5
1
Parent(s):
c84ad76
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -14,6 +14,9 @@ COPY ./requirements.txt /app/
|
|
14 |
# Install the dependencies
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|
|
|
|
|
|
|
17 |
# Copy the current directory contents into the container at /app
|
18 |
COPY . /app/
|
19 |
|
|
|
14 |
# Install the dependencies
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
16 |
|
17 |
+
# Add uvicorn to the PATH
|
18 |
+
ENV PATH="/home/appuser/.local/bin:${PATH}"
|
19 |
+
|
20 |
# Copy the current directory contents into the container at /app
|
21 |
COPY . /app/
|
22 |
|