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 14
14
# # See the License for the specific language governing permissions and
15
15
# # limitations under the License.
16
16
# ##
17
- FROM debian:stable -slim AS builder
17
+ FROM debian:unstable -slim AS builder
18
18
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
19
19
ARG ACCEL_CONFIG_VERSION="3.4.6.4"
20
20
ARG ACCEL_CONFIG_DOWNLOAD_URL="https://github.com/intel/idxd-config/archive/accel-config-v$ACCEL_CONFIG_VERSION.tar.gz"
21
21
ARG ACCEL_CONFIG_SHA256="5f9ee68f51913d803b9b0e51cdadaff14ea1523f6e9e4d4ab3e85de644ba6d21"
22
22
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
23
23
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
24
24
# ##
25
- FROM debian:stable -slim
25
+ FROM debian:unstable -slim
26
26
RUN apt update && apt install -y libjson-c5 jq
27
27
COPY --from=builder /usr/lib64/libaccel-config.so.1.0.0 "/lib/x86_64-linux-gnu/"
28
28
RUN 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
2
2
3
3
RUN apt update && apt install -y --no-install-recommends \
4
4
gcc make patch autoconf automake libtool pkg-config \
@@ -19,7 +19,7 @@ RUN cd idxd-config-accel-config-v$ACCEL_CONFIG_VERSION && \
19
19
make && \
20
20
make install
21
21
###
22
- FROM debian:stable -slim
22
+ FROM debian:unstable -slim
23
23
24
24
RUN apt update && apt install -y libjson-c5 jq
25
25
Original file line number Diff line number Diff line change 1
- FROM debian:stable -slim AS builder
1
+ FROM debian:unstable -slim AS builder
2
2
3
3
# Install build dependencies
4
4
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} && \
23
23
make -j xfpga nlb0 nlb3
24
24
25
25
26
- FROM debian:stable -slim
26
+ FROM debian:unstable -slim
27
27
28
28
RUN apt-get update && apt-get install -y libjson-c5
29
29
You can’t perform that action at this time.
0 commit comments