Skip to content

Commit

Permalink
Attempt to avoid cloning repos on docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Shillaker committed Oct 13, 2020
1 parent 9d2f95e commit 75fbfa9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ jobs:
uses: docker/build-push-action@v2
with:
push: false
context: .
file: docker/sysroot.dockerfile

1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ jobs:
with:
push: true
file: docker/sysroot.dockerfile
context: .
tags: faasm/sysroot:${{ env.TAG_VERSION }}
5 changes: 4 additions & 1 deletion docker/sysroot.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ FROM faasm/toolchain:10.0.1
RUN apt update
RUN apt install -y \
python3-dev \
python3-pip
python3-pip \
libtool \
autotools-dev \
autoconf

WORKDIR /code
COPY requirements.txt .
Expand Down
2 changes: 1 addition & 1 deletion third-party/faasm-clapack

0 comments on commit 75fbfa9

Please sign in to comment.