mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
![dependabot-preview[bot]](/assets/img/avatar_default.png)
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.10.0 to 1.10.1. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.10.0...v1.10.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
20 lines
473 B
Docker
20 lines
473 B
Docker
FROM golang
|
|
|
|
RUN mkdir -p $GOPATH/src/github.com/nxadm/tail/
|
|
ADD . $GOPATH/src/github.com/nxadm/tail/
|
|
|
|
# expecting to fetch dependencies successfully.
|
|
RUN go get -v github.com/nxadm/tail
|
|
|
|
# expecting to run the test successfully.
|
|
RUN go test -v github.com/nxadm/tail
|
|
|
|
# expecting to install successfully
|
|
RUN go install -v github.com/nxadm/tail
|
|
RUN go install -v github.com/nxadm/tail/cmd/gotail
|
|
|
|
RUN $GOPATH/bin/gotail -h || true
|
|
|
|
ENV PATH $GOPATH/bin:$PATH
|
|
CMD ["gotail"]
|