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