shad-go/lectures/Dockerfile
Fedor Korotkiy 8048bd1d19 Fix typo
2023-03-31 07:56:56 +00:00

9 lines
305 B
Docker

FROM golang:1.20-alpine
RUN CGO_ENABLED=0 go install golang.org/x/tools/cmd/present@v0.6.0
COPY . /lectures
WORKDIR /lectures
ENTRYPOINT ["/go/bin/present", "-base", "/go/pkg/mod/golang.org/x/tools@v0.6.0/cmd/present", "-http", ":8080", "-orighost", "p.go.manytask.org", "-use_playground", "-play=0"]