CloudStorage / Dockerfile
thejagstudio's picture
Update Dockerfile
b7e1e68 verified
raw
history blame
197 Bytes
FROM ubuntu:24.04
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install -r /code/requirements.txt
COPY . .
EXPOSE 7860
CMD ["python","./manage.py","runserver","0.0.0.0:7860"]