Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ chmod +x /usr/local/bin/dapper
From source

```sh
go get github.com/rancher/dapper
go install github.com/rancher/dapper@latest
```

## Example

Dapper is built using dapper so the following is a decent example

```sh
go get github.com/rancher/dapper
go install github.com/rancher/dapper@latest # install dapper executable
git clone https://github.com/rancher/dapper.git
cd dapper
dapper
Expand All @@ -29,8 +29,8 @@ dapper
This is the `Dockerfile.dapper` used

```Dockerfile
FROM golang:1.15
RUN go get github.com/tools/godep
FROM golang:1.17
RUN go install github.com/tools/godep@latest
ENV DAPPER_SOURCE /go/src/github.com/rancher/dapper
ENV DAPPER_OUTPUT bin
WORKDIR ${DAPPER_SOURCE}
Expand Down