Skip to content

Commit 6c28067

Browse files
committed
feature: make cpp-sysroot image slimmer
1 parent 655917b commit 6c28067

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
SYSROOT_VERSION=0.7.0
2-
SYSROOT_CLI_IMAGE=ghcr.io/faasm/cpp-sysroot:0.7.0
1+
SYSROOT_VERSION=0.8.0
2+
SYSROOT_CLI_IMAGE=ghcr.io/faasm/cpp-sysroot:0.8.0
33
COMPOSE_PROJECT_NAME=cpp-dev

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: github.event.pull_request.draft == false
1818
runs-on: ubuntu-latest
1919
container:
20-
image: ghcr.io/faasm/cpp-sysroot:0.7.0
20+
image: ghcr.io/faasm/cpp-sysroot:0.8.0
2121
steps:
2222
# --- Update code ---
2323
- name: "Checkout code"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0
1+
0.8.0

docker/cpp-sysroot.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
FROM ghcr.io/faasm/llvm:0.7.0 AS llvm
33

44
# faabric-base image is not re-built often, so tag may be behind
5-
FROM ghcr.io/faasm/faabric-base:0.21.0
5+
FROM ghcr.io/faasm/faabric-base:0.22.0
66
SHELL ["/bin/bash", "-c"]
77
ENV CPP_DOCKER="on"
88

99
# Copy the toolchain and LLVM sources from the LLVM container
1010
COPY --from=llvm /usr/local/faasm /usr/local/faasm
11-
COPY --from=llvm /opt/llvm-project /opt/llvm-project
11+
# COPY --from=llvm /opt/llvm-project /opt/llvm-project
1212

1313
# Update APT dependencies
1414
RUN apt update && apt install -y autotools-dev

0 commit comments

Comments
 (0)