CloudStorage / Dockerfile
thejagstudio's picture
Update Dockerfile
174a7a0 verified
raw
history blame
280 Bytes
FROM ubuntu:24.04
RUN apt-get update
RUN apt-get install -y python3-pip
RUN apt-get install -y pipx
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pipx install -r /code/requirements.txt
COPY . .
EXPOSE 7860
CMD ["python","./manage.py","runserver","0.0.0.0:7860"]