Skip to content

Commit

Permalink
chore: fixed minimal Dockerfile example in readme (#52)
Browse files Browse the repository at this point in the history
chore: fixed minimal docker example in readme
  • Loading branch information
ChristianSch authored Mar 2, 2023
1 parent 48e464e commit be6c104
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ By default, GitHub Actions expects actions to be written in Node.js. For other l
```dockerfile
# your-repo/Dockerfile
FROM golang:1.18
WORKDIR /src
COPY . .
RUN go build -o /bin/app .
ENTRYPOINT ["/bin/app"]
```
Expand Down

0 comments on commit be6c104

Please sign in to comment.