Skip to content

Commit 7e92c3c

Browse files
committed
switch back to debian:unstable-slim as a base
We had to switch to debian unstable earlier due to a mismatch in glibc versions in the debian-unstrable-slim and debian-testing-slim images and Debian package repositories. This issue has been fixed: debuerreotype/docker-debian-artifacts#168 so we can switch back.
1 parent 611b4d3 commit 7e92c3c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build/docker/intel-idxd-config-initcontainer.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
## See the License for the specific language governing permissions and
1515
## limitations under the License.
1616
###
17-
FROM debian:stable-slim AS builder
17+
FROM debian:unstable-slim AS builder
1818
RUN apt update && apt install -y --no-install-recommends gcc make patch autoconf automake libtool pkg-config libjson-c-dev uuid-dev curl ca-certificates
1919
ARG ACCEL_CONFIG_VERSION="3.4.6.4"
2020
ARG ACCEL_CONFIG_DOWNLOAD_URL="https://github.com/intel/idxd-config/archive/accel-config-v$ACCEL_CONFIG_VERSION.tar.gz"
2121
ARG ACCEL_CONFIG_SHA256="5f9ee68f51913d803b9b0e51cdadaff14ea1523f6e9e4d4ab3e85de644ba6d21"
2222
RUN curl -fsSL "$ACCEL_CONFIG_DOWNLOAD_URL" -o accel-config.tar.gz && echo "$ACCEL_CONFIG_SHA256 accel-config.tar.gz" | sha256sum -c - && tar -xzf accel-config.tar.gz
2323
RUN cd idxd-config-accel-config-v$ACCEL_CONFIG_VERSION && ./git-version-gen && autoreconf -i && ./configure -q --libdir=/usr/lib64 --disable-test --disable-docs && make && make install
2424
###
25-
FROM debian:stable-slim
25+
FROM debian:unstable-slim
2626
RUN apt update && apt install -y libjson-c5 jq
2727
COPY --from=builder /usr/lib64/libaccel-config.so.1.0.0 "/lib/x86_64-linux-gnu/"
2828
RUN ldconfig && mkdir -p /licenses/accel-config

build/docker/templates/intel-idxd-config-initcontainer.Dockerfile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:stable-slim AS builder
1+
FROM debian:unstable-slim AS builder
22

33
RUN apt update && apt install -y --no-install-recommends \
44
gcc make patch autoconf automake libtool pkg-config \
@@ -19,7 +19,7 @@ RUN cd idxd-config-accel-config-v$ACCEL_CONFIG_VERSION && \
1919
make && \
2020
make install
2121
###
22-
FROM debian:stable-slim
22+
FROM debian:unstable-slim
2323

2424
RUN apt update && apt install -y libjson-c5 jq
2525

demo/opae-nlb-demo/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:stable-slim AS builder
1+
FROM debian:unstable-slim AS builder
22

33
# Install build dependencies
44
RUN apt-get update && apt-get install -y curl python3-dev git gcc g++ make cmake uuid-dev libjson-c-dev libedit-dev libudev-dev
@@ -23,7 +23,7 @@ RUN cd /usr/src/opae/opae-sdk-${OPAE_RELEASE} && \
2323
make -j xfpga nlb0 nlb3
2424

2525

26-
FROM debian:stable-slim
26+
FROM debian:unstable-slim
2727

2828
RUN apt-get update && apt-get install -y libjson-c5
2929

0 commit comments

Comments
 (0)