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

fixes on docker file #273

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ RUN apt-get update && apt-get install -yq sudo apt-utils software-properties-com
# install pf_ring deps

COPY scripts/install_pfring.sh /
ARG pfring_ver="latest"
#ARG pfring_ver="latest"
ARG pfring_ver="7.8.0-stable"
RUN /usr/bin/sudo pfring_ver="${pfring_ver}" /install_pfring.sh

# ------------------------------------------------------------------------------
Expand Down Expand Up @@ -61,6 +62,8 @@ COPY go.* /opt/conjure/
COPY cmd/ /opt/conjure/cmd
COPY pkg/ /opt/conjure/pkg
COPY proto/ /opt/conjure/proto
# util is not actually used, but it is in the go.work, and leaving it out results in an error.
COPY util/ /opt/conjure/util

RUN PATH="$HOME/.go/bin/:/usr/local/go/bin:$PATH" make app
RUN PATH="$HOME/.go/bin/:/usr/local/go/bin:$PATH" make registration-server
Expand Down
Loading