Skip to content

Commit be6c104

Browse files
authored
chore: fixed minimal Dockerfile example in readme (#52)
chore: fixed minimal docker example in readme
1 parent 48e464e commit be6c104

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ By default, GitHub Actions expects actions to be written in Node.js. For other l
6969
```dockerfile
7070
# your-repo/Dockerfile
7171
FROM golang:1.18
72+
WORKDIR /src
73+
COPY . .
7274
RUN go build -o /bin/app .
7375
ENTRYPOINT ["/bin/app"]
7476
```

0 commit comments

Comments
 (0)