pupate

Puzzle transpiler
git clone https://git.woozle.org/neale/pupate.git

pupate / build
Neale Pickett  ·  2025-01-02

Dockerfile

1FROM golang:1.23
2RUN apt-get update
3RUN apt-get -y install python3-pil
4WORKDIR /src
5COPY . .
6RUN go install ./...
7ENTRYPOINT [ "pupate" ]