Delete Dockerfile.paraderos_backend

main
ifiguero 2024-07-30 12:31:56 -04:00
parent 0c83f2780f
commit 7889f6b84f
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
FROM python:3.11-slim
RUN apt-get update && apt-get -y install git && apt-get clean
RUN useradd -m app
RUN git clone https://72d861f982d2a76275d5b8178fe0633b19c43d33@dev.ilab.cl/TDTP/paraderos_backend /srv
RUN pip install -r /srv/requirements.txt
COPY settings.paradero_backend.py /srv/project/settings.py
RUN chown -R app:app /srv
USER app
WORKDIR /srv
ENTRYPOINT ["python3"]
CMD ["manage.py", "runserver", "0.0.0.0:4000"]