fury-bot / Dockerfile
robinroy03's picture
test-llama3, not sure how it'll go on langserve
caa5775
raw
history blame
186 Bytes
FROM python:3.11.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "main.py"]