Skip to content

Commit

Permalink
Fix Dockerfile's upgrade step
Browse files Browse the repository at this point in the history
  • Loading branch information
PlagueCZ committed Oct 9, 2023
1 parent c6ef058 commit 9b55b4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG DPSERVICE_FEATURES=""
WORKDIR /workspace

# Install prerequisite packages
RUN apt-get update && apt-get upgrade && apt-get install -y --no-install-recommends ON \
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends ON \
libibverbs-dev \
libmnl-dev \
libnuma-dev \
Expand Down Expand Up @@ -126,7 +126,7 @@ ENTRYPOINT ["pytest-3", "-x", "-v"]

FROM debian:12-slim as production

RUN apt-get update && apt-get upgrade && apt-get install -y --no-install-recommends ON \
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends ON \
libibverbs-dev \
numactl \
libnuma1 \
Expand Down

0 comments on commit 9b55b4c

Please sign in to comment.