mirror of
https://github.com/BrianPugh/game-and-watch-patch.git
synced 2025-12-16 07:16:26 +01:00
23 lines
532 B
Docker
23 lines
532 B
Docker
FROM ubuntu:22.04
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update -y && apt-get install --no-install-recommends -yqq \
|
|
build-essential \
|
|
make \
|
|
python3 \
|
|
python3-dev \
|
|
python3-pip \
|
|
unzip \
|
|
wget \
|
|
libftdi1 libftdi1-2 libhidapi-hidraw0 libusb-0.1-4 libusb-1.0-0 \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . /root/game-and-watch-patch
|
|
|
|
WORKDIR /root/game-and-watch-patch
|
|
|
|
RUN pip install -r requirements.txt \
|
|
&& pip install gnwmanager
|
|
|
|
RUN gnwmanager install openocd arm-toolchain
|