Spaces:
Sleeping
Sleeping
Commit
·
74ec1b0
1
Parent(s):
589481a
add pthonpath
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -15,6 +15,10 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
15 |
# Copy the rest of the application code from the host to the container
|
16 |
# Again, ensure the copied files are owned by 'user'
|
17 |
COPY --chown=user . /app
|
|
|
|
|
|
|
|
|
18 |
# Specify the command to run when the container starts
|
19 |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
20 |
# Pass the secret variable to the application
|
|
|
15 |
# Copy the rest of the application code from the host to the container
|
16 |
# Again, ensure the copied files are owned by 'user'
|
17 |
COPY --chown=user . /app
|
18 |
+
|
19 |
+
# Set Python path (if necessary)
|
20 |
+
ENV PYTHONPATH="${PYTHONPATH}:/app"
|
21 |
+
|
22 |
# Specify the command to run when the container starts
|
23 |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
24 |
# Pass the secret variable to the application
|