You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN wget https://github.com/zeromq/libzmq/releases/download/v4.3.4/zeromq-4.3.4.tar.gz && tar -xf zeromq-4.3.4.tar.gz && cd zeromq-4.3.4 && ./configure && make && make install
ENV LD_LIBRARY_PATH=/usr/local/lib
COPY . /redbelly
WORKDIR /redbelly
RUN CGO_ENABLED=1 go build -o /redbelly/build/zeromq cmd/zeromq/main.go
RUN CGO_ENABLED=1 go build -o /redbelly/build/rbbc cmd/rbbc/main.go
FROM golang
RUN wget https://github.com/zeromq/libzmq/releases/download/v4.3.4/zeromq-4.3.4.tar.gz && tar -xf zeromq-4.3.4.tar.gz && cd zeromq-4.3.4 && ./configure && make && make install