A game about bouncing blaster bolts off walls.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM debian:bullseye |
|
|
|
RUN apt-get update && apt-get install -y cargo rustc libsdl2-dev libsdl2-mixer-dev libsdl2-image-dev libsdl2-gfx-dev libsdl2-ttf-dev git build-essential |
|
|
|
VOLUME /usr/src |
|
WORKDIR /usr/src
|
|
|