arxiv_chatbot / Dockerfile
tosanoob's picture
Update Dockerfile
8024bba verified
raw
history blame
280 Bytes
FROM python:3.11
# set work directory
WORKDIR /code
# copy project
COPY . /code/
RUN python -m venv ./arxiv_venv
RUN bash ./arxiv_venv/bin/activate
# install dependencies
RUN pip install -r requirement.txt
EXPOSE 8000
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]