modified: Dockerfile
Deploy / build_and_push_images (push) Successful in 3m45s Details
Deploy / deploy_to_server (push) Successful in 36s Details

This commit is contained in:
George Butskivsky 2024-05-15 17:26:41 +03:00
parent 30004f4760
commit 004aefa206
1 changed files with 4 additions and 3 deletions

View File

@ -9,10 +9,11 @@ RUN apt-get install python3-poetry -y
RUN poetry -vvv --version RUN poetry -vvv --version
COPY . ${WORKING_DIR} COPY pyproject.toml poetry.lock ./
COPY pyproject.toml .
RUN poetry install RUN poetry install
COPY . ${WORKING_DIR}
RUN poetry run task build RUN poetry run task build
CMD ["poetry", "run", "task", "start"] CMD ["poetry", "run", "task", "start"]