diff --git a/.dockerignore b/.dockerignore index 9d01d1d..8dc435f 100644 --- a/.dockerignore +++ b/.dockerignore @@ -8,3 +8,4 @@ gojekyll gojekyll-race coverage.out /Dockerfile +.env diff --git a/.gitignore b/.gitignore index 38275ca..988f335 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ coverage.out dist/ +.env diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 9679baa..0000000 --- a/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -FROM alpine:latest - -RUN apk add libstdc++ libgcc - -COPY gojekyll /usr/local/bin/gojekyll - -EXPOSE 4000 - -ENTRYPOINT ["/usr/local/bin/gojekyll"] - -CMD [ "--help" ] diff --git a/README.md b/README.md index 34c3881..2c2a116 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ live reload. | SASS | ✓ | ✓ | ✓ | | Jekyll compatibility | [partial](#current-limitations) | ✓ | | | Plugins | [some](./docs/plugins.md) | yes | shortcodes, theme components | -| Windows support | | ✓ | ✓ | +| Windows support | ✓ | ✓ | ✓ | | Implementation language | Go | Ruby | Go | @@ -248,7 +248,7 @@ Gojekyll uses these libraries: | [github.com/danog/blackfriday](https://github.com/danog/blackfriday) | Russ Ross, Daniil Gentili | Markdown processing | Simplified BSD License | | [github.com/sass/dart-sass](https://github.com/sass/dart-sass) | Listed [here](https://github.com/sass/dart-sass) | The reference implementation of Sass, written in Dart. | MIT License | | [github.com/tdewolff/minify](https://github.com/tdewolff/minify) | Taco de Wolff | CSS minimization | MIT License | -| [github.com/bep/godartsass](https://github.com/bep/godartsass) | Drew Wells | Go API backed by the native Dart Sass Embedded executable. | MIT License | +| [github.com/bep/godartsass](https://github.com/bep/godartsass) | Drew Wells | Go API backed by the native Dart Sass Embedded executable. | MIT License | | [github.com/alecthomas/kingpin/v2](https://github.com/alecthomas/kingpin) | Alec Thomas | command-line arguments | MIT License | | [github.com/alecthomas/chroma](https://github.com/alecthomas/chroma) | Alec Thomas | Syntax highlighter | MIT License | | [gopkg.in/yaml.v2](https://github.com/go-yaml/yaml) | Canonical | YAML support | Apache License 2.0 |