CloudStorage / Dockerfile
thejagstudio's picture
Update Dockerfile
cee3998 verified
raw
history blame contribute delete
No virus
410 Bytes
FROM ubuntu:24.04
RUN apt-get update
RUN apt-get install -y python3-pip
RUN apt-get install -y python3-venv
WORKDIR /code
RUN python3 -m venv /code/venv
COPY ./requirements.txt /code/requirements.txt
RUN /code/venv/bin/pip install --upgrade pip
RUN /code/venv/bin/pip install -r /code/requirements.txt
COPY . .
ENV PATH="/code/venv/bin:$PATH"
EXPOSE 7860
CMD ["python","./manage.py","runserver","0.0.0.0:7860"]