Skip to content

Commit f0ca194

Browse files
committed
Properly add requirements for asset upload.
1 parent 7231d22 commit f0ca194

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.buildkite/setup_and_upload_artifact.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [ $? -ne 0 ]; then
2121
exit 1
2222
fi
2323

24-
PIP_CMD="$PIP_PATH install requests"
24+
PIP_CMD="$PIP_PATH install -r requirements/pipeline.txt"
2525
echo "Running $PIP_CMD..."
2626
$PIP_CMD
2727
if [ $? -ne 0 ]; then

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ COPY . /kolibri
1616

1717
VOLUME /kolibridist/ # for mounting the whl files into other docker containers
1818
# add buildkite pipeline specific installation here:
19-
RUN pip install requests github3.py
2019
CMD cd /kolibri && pip install -r requirements/dev.txt && pip install -r requirements/build.txt && yarn install && make dist && cp /kolibri/dist/* /kolibridist/
2120

requirements/pipeline.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
requests==2.10.0
2+
github3.py==0.9.6

0 commit comments

Comments
 (0)