Skip to content

Commit

Permalink
Docker build changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cpbritton committed Jan 6, 2025
1 parent fb5758d commit 7aec7b0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker/Backend.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ ENV AzureWebJobsScriptRoot=/home/site/wwwroot \

COPY pyproject.toml /
COPY poetry.lock /
RUN pip install --upgrade pip && pip install poetry && poetry export -o requirements.txt && pip install -r requirements.txt
RUN pip install --upgrade pip
RUN pip install poetry
RUN poetry export -o requirements.txt
RUN pip install -r requirements.txt

COPY ./code/backend/batch/utilities /home/site/wwwroot/utilities
COPY ./code/backend/batch /home/site/wwwroot
COPY ./code/backend/batch /home/site/wwwroot

0 comments on commit 7aec7b0

Please sign in to comment.