commit c3c26db8f24650c11d4693ae0d058961e474f391 Author: Vivianne Langdon Date: Mon Apr 18 22:26:16 2022 -0700 initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f71e88c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM python:alpine3.15 + +RUN pip3 install 'gdtoolkit==3.*' + +ENTRYPOINT /bin/sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..146b07f --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +Nothing special, just a simple container with [godot-gdscript-toolkit](https://github.com/Scony/godot-gdscript-toolkit) installed onto Python/Alpine. + +## Usage + +``` +docker run --rm vivicat/gdscript-toolkit gdlint scripts +docker run --rm vivicat/gdscript-toolkit gdformat scripts +```