mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
797f42b839
Closes #1750
12 lines
315 B
Docker
12 lines
315 B
Docker
FROM debian:buster
|
|
|
|
# For the version of gcc-mingw-w64, see https://packages.debian.org/buster/gcc-mingw-w64-x86-64
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
ca-certificates \
|
|
golang \
|
|
gcc-mingw-w64=8.3.0-6+21.3~deb10u1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /work
|