Files
impostor/.devcontainer/Dockerfile
Tari Balázs 2297f1b6e0
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- devcontainer: tic80 compiles and graphics runs, tested on linux
2026-04-16 22:03:20 +02:00

28 lines
476 B
Docker

FROM alpine:3.23
RUN apk update && apk add --no-cache \
xeyes \
jack \
git \
luarocks \
mc \
make \
cmake \
ruby \
bash \
curl \
ca-certificates \
g++ \
pulseaudio \
mesa-dev \
mesa-gles \
glu-dev
RUN git clone --recursive --depth=1 https://github.com/nesbox/TIC-80.git /root/TIC-80 \
&& cd /root/TIC-80/build \
&& cmake -DBUILD_PRO=1 .. \
&& make -j$(nproc) \
&& make install
CMD ["/bin/sh"]