File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 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
1818RUN apt update && apt install -y --no-install-recommends gcc make patch autoconf automake libtool pkg-config libjson-c-dev uuid-dev curl ca-certificates
1919ARG ACCEL_CONFIG_VERSION="3.4.6.4"
2020ARG ACCEL_CONFIG_DOWNLOAD_URL="https://github.com/intel/idxd-config/archive/accel-config-v$ACCEL_CONFIG_VERSION.tar.gz"
2121ARG ACCEL_CONFIG_SHA256="5f9ee68f51913d803b9b0e51cdadaff14ea1523f6e9e4d4ab3e85de644ba6d21"
2222RUN 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
2323RUN 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
2626RUN apt update && apt install -y libjson-c5 jq
2727COPY --from=builder /usr/lib64/libaccel-config.so.1.0.0 "/lib/x86_64-linux-gnu/"
2828RUN ldconfig && mkdir -p /licenses/accel-config
Original file line number Diff line number Diff line change 1- FROM debian:stable -slim AS builder
1+ FROM debian:unstable -slim AS builder
22
33RUN 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
2424RUN apt update && apt install -y libjson-c5 jq
2525
Original file line number Diff line number Diff line change 1- FROM debian:stable -slim AS builder
1+ FROM debian:unstable -slim AS builder
22
33# Install build dependencies
44RUN 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
2828RUN apt-get update && apt-get install -y libjson-c5
2929
You can’t perform that action at this time.
0 commit comments