Skip to content

Commit

Permalink
Switch from debian testing to ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenraven committed Oct 13, 2022
1 parent 6ff26aa commit 8c0dc87
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.4.1
3 changes: 1 addition & 2 deletions docker/faabric-base-runtime.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
FROM debian:bookworm-20220822-slim
# Debian "12" testing
FROM ubuntu:22.04

RUN apt-get update \
&& apt-get upgrade --yes --no-install-recommends \
Expand Down
10 changes: 5 additions & 5 deletions docker/faabric-base.dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM kubasz51/faasm-faabric-base-runtime:0.3.1
# Debian "12" testing
FROM kubasz51/faasm-faabric-base-runtime:0.4.1

RUN apt-get update \
&& apt-get upgrade --yes --no-install-recommends \
&& apt-get install --yes --no-install-recommends \
autoconf \
automake \
build-essential \
ceph-common \
clang-13 \
clang-format-13 \
clang-tidy-13 \
Expand All @@ -23,6 +23,7 @@ RUN apt-get update \
liblttng-ust-dev \
lttng-tools \
libpython3-dev \
librados-dev \
libssl-dev \
libstdc++-11-dev \
libtool \
Expand All @@ -37,7 +38,6 @@ RUN apt-get update \
&& apt-get autoremove --yes

# Update pip
RUN pip install -U pip
RUN pip install -U pip wheel setuptools

RUN pip install cmake==3.24.1
RUN pip install conan==1.51.3
RUN pip install cmake==3.24.1 conan==1.53.0
3 changes: 2 additions & 1 deletion docker/faabric.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kubasz51/faasm-faabric-base:0.4.0
FROM kubasz51/faasm-faabric-base:0.4.1
ARG FAABRIC_VERSION

# faabic-base image is not re-built often, so tag may be behind
Expand Down Expand Up @@ -27,6 +27,7 @@ RUN ./bin/create_venv.sh \

# GDB config, allow loading repo-specific config
RUN echo "set auto-load safe-path /" > /root/.gdbinit
RUN git config --global --add safe.directory '*'

# CLI setup
ENV TERM xterm-256color
Expand Down

0 comments on commit 8c0dc87

Please sign in to comment.