Spaces:
Sleeping
Sleeping
File size: 330 Bytes
b19d363 849f8b8 | 1 2 3 4 5 6 7 8 9 10 11 12 | FROM python:3.11
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
COPY requirements.txt requirements.txt
COPY invoice /app
RUN pip3 install -r requirements.txt
# RUN python manage.py makemigrations
# RUN python manage.py migrate
RUN cd invoice
EXPOSE 7860
CMD ["python3", "manage.py", "runserver", "0.0.0.0:7860"] |