mirror of https://github.com/dirtbags/tanks.git
8 lines
143 B
Docker
8 lines
143 B
Docker
|
FROM golang:1.22
|
||
|
WORKDIR /app
|
||
|
COPY *.go *.c *.h Makefile www /app
|
||
|
RUN make
|
||
|
RUN mkdir rounds
|
||
|
COPY examples /app/tanks
|
||
|
ENTRYPOINT [ "./tanksd" ]
|