arxiv_chatbot / Dockerfile
tosanoob's picture
Update Dockerfile
38f06a6 verified
raw
history blame
No virus
212 Bytes
FROM python:3.11
# set work directory
WORKDIR /code
# copy project
COPY . /code/
# install dependencies
RUN pip install -r requirement.txt
EXPOSE 8000
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]