Skip to content

Commit

Permalink
Remove debug information
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumerose authored and praveenkumar committed Aug 6, 2020
1 parent a682905 commit 8073b29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.centos8
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local
COPY . /go/src/github.com/code-ready/machine-driver-libvirt
WORKDIR /go/src/github.com/code-ready/machine-driver-libvirt

RUN go build -i -v -o /go/bin/crc-driver-libvirt ./cmd/machine-driver-libvirt
RUN go build -i -v -ldflags="-s -w" -o /go/bin/crc-driver-libvirt ./cmd/machine-driver-libvirt
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu20.04
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local
COPY . /go/src/github.com/code-ready/machine-driver-libvirt
WORKDIR /go/src/github.com/code-ready/machine-driver-libvirt

RUN go build -i -v -o /go/bin/crc-driver-libvirt ./cmd/machine-driver-libvirt
RUN go build -i -v -ldflags="-s -w" -o /go/bin/crc-driver-libvirt ./cmd/machine-driver-libvirt

0 comments on commit 8073b29

Please sign in to comment.