tanks

Blow up enemy tanks using code
git clone https://git.woozle.org/neale/tanks.git

Neale Pickett  ·  2024-12-05

Dockerfile

1FROM golang:1.22
2WORKDIR /app
3COPY *.go *.c *.h Makefile www /app
4RUN make
5RUN mkdir rounds
6COPY examples /app/tanks
7ENTRYPOINT [ "./tanksd" ]