mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
7307a148f5
As MinGW version is specified, the result should be more deterministic. Fixes #1201
10 lines
197 B
Docker
10 lines
197 B
Docker
FROM debian:testing
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
ca-certificates \
|
|
golang \
|
|
gcc-mingw-w64=10.1.0-3+23 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /work
|