dockerfile

This commit is contained in:
Administrator 2022-08-21 16:54:30 +03:00
parent 77b641bb77
commit 3e2620645e
2 changed files with 7 additions and 8 deletions

View File

@ -15,3 +15,9 @@ COPY requirements.txt /usr/src/app/requirements.txt
WORKDIR /usr/src/app/
RUN pip3 install -r requirements.txt
COPY . /usr/src/app/
RUN chmod 777 /usr/src/app/run.sh
CMD ["./manage.py", "checker"]

View File

@ -1,7 +0,0 @@
FROM mathwave/sprint-repo:base
COPY . /usr/src/app/
RUN chmod 777 /usr/src/app/run.sh
CMD ["./manage.py", "checker"]