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

MF-597 - Removed legacy code as not needed anymore #598

Merged
merged 3 commits into from
Feb 15, 2019
Merged
Changes from 2 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
6 changes: 1 addition & 5 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ ARG SVC_NAME
WORKDIR /go/src/github.com/mainflux/mainflux
COPY . .
RUN apk update \
&& apk add make protobuf git \
drasko marked this conversation as resolved.
Show resolved Hide resolved
&& go get -u github.com/golang/protobuf/protoc-gen-go \
&& go get github.com/gogo/protobuf/protoc-gen-gofast \
&& go get -u google.golang.org/grpc \
&& make proto \
&& apk add make git \
drasko marked this conversation as resolved.
Show resolved Hide resolved
&& make $SVC_NAME \
&& mv build/mainflux-$SVC_NAME /exe

Expand Down