-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation is largely based on: #167 Co-Authored-By: Manuel Rueger <manuel@rueg.eu>
- Loading branch information
Showing
16 changed files
with
464 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
FROM golang:1.20.2 as builder | ||
FROM golang:1.20.3 as builder | ||
ENV GOPATH="/go" | ||
WORKDIR /go/src/github.com/kovetskiy/mark | ||
COPY / . | ||
RUN make get \ | ||
&& make build | ||
|
||
FROM alpine:3.17 | ||
RUN apk --no-cache add ca-certificates bash sed git | ||
FROM chromedp/headless-shell:latest | ||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends -qq ca-certificates bash sed git \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
COPY --from=builder /go/src/github.com/kovetskiy/mark/mark /bin/ | ||
WORKDIR /docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.