fixed dockerfile
This commit is contained in:
@@ -3,7 +3,7 @@ WORKDIR /app
|
|||||||
COPY api/requirements.txt .
|
COPY api/requirements.txt .
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
COPY api/app/ ./app/
|
COPY api/app/ ./app/
|
||||||
COPY api/static/ ./static/ # <-- Add this line
|
COPY api/static/ ./static/
|
||||||
RUN mkdir -p /data
|
RUN mkdir -p /data
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
||||||
Reference in New Issue
Block a user