Initial commit
This commit is contained in:
16
llamaCpp.Wrapper.app/Dockerfile
Normal file
16
llamaCpp.Wrapper.app/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
ENV PYTHONDONTWRITEBYTECODE=1 \
|
||||
PYTHONUNBUFFERED=1
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
COPY app /app/app
|
||||
COPY trades_company_stock.txt /app/trades_company_stock.txt
|
||||
|
||||
EXPOSE 8000 8001
|
||||
|
||||
CMD ["python", "-m", "app.run"]
|
||||
Reference in New Issue
Block a user