mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-19 05:27:54 -05:00
This squash also removes the calcrom webhook, which serves no purpose at this stage of the project.
15 lines
540 B
Docker
15 lines
540 B
Docker
FROM ubuntu:noble
|
|
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y bison flex g++ gcc-arm-none-eabi git make ninja-build pkg-config python3 wget ninja-build
|
|
|
|
RUN dpkg --add-architecture i386
|
|
RUN mkdir -pm755 /etc/apt/keyrings
|
|
RUN wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
|
|
RUN wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/noble/winehq-noble.sources
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y --install-recommends winehq-stable
|
|
RUN hash -r
|
|
|
|
CMD [ "/bin/sh" ]
|