Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use BESS' master branch instead of dpdk-2011-focal #752

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update && \

# BESS pre-reqs
WORKDIR /bess
ARG BESS_COMMIT=dpdk-2011-focal
ARG BESS_COMMIT=master
RUN git clone https://github.com/omec-project/bess.git . \
&& git checkout ${BESS_COMMIT} \
&& cp -a protobuf /protobuf
Expand Down
4 changes: 2 additions & 2 deletions docs/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ index 052456d..03b7d33 100644

# BESS pre-reqs
WORKDIR /bess
-ARG BESS_COMMIT=dpdk-2011-focal
-ARG BESS_COMMIT=master
-RUN git clone https://github.com/omec-project/bess.git .
-RUN git checkout ${BESS_COMMIT}
+COPY bess/ .
Expand All @@ -50,7 +50,7 @@ index 03b7d33..052456d 100644
# BESS pre-reqs
WORKDIR /bess
-COPY bess/ .
+ARG BESS_COMMIT=dpdk-2011-focal
+ARG BESS_COMMIT=master
+RUN git clone https://github.com/omec-project/bess.git .
+RUN git checkout ${BESS_COMMIT}
RUN cp -a protobuf /protobuf
Expand Down