Fix requirements.txt path in docker stuff

pull/15339/head
Jamie Smith 2022-05-08 09:46:17 -07:00 committed by Jay Sridharan
parent 34b66e73a7
commit ad9d989157
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ on:
- master
paths:
- requirements.txt
- tools/requirements.txt
- docker_images/mbed-os-env/**
- .github/workflows/docker_management.branch.yml

View File

@ -10,7 +10,7 @@ on:
paths:
- docker_images/mbed-os-env/**
- .github/workflows/docker_management.*
- requirements.txt
- tools/requirements.txt
jobs:

View File

@ -44,12 +44,12 @@ RUN set -x \
# Set up Mbed environment
WORKDIR /tmp/
COPY requirements.txt .
COPY tools/requirements.txt .
RUN set -x \
&& pip3 install -r requirements.txt \
&& : # last line
COPY tools/cmake/requirements.txt .
COPY tools/test/requirements.txt .
RUN set -x \
&& pip3 install -r requirements.txt \
&& : # last line