mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-11-22 10:39:20 +01:00
029e1cf638
* build against libdragon unstable * remove libPng * Fix build warnings * Add remote deploy * Switch to ubuntu latest image * Improve readme
14 lines
747 B
Docker
14 lines
747 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install build-essential git python3 wget -y && \
|
|
wget https://github.com/DragonMinded/libdragon/releases/download/toolchain-continuous-prerelease/gcc-toolchain-mips64-x86_64.deb && \
|
|
dpkg -i gcc-toolchain-mips64-x86_64.deb && \
|
|
rm gcc-toolchain-mips64-x86_64.deb && \
|
|
wget https://github.com/Polprzewodnikowy/SummerCart64/releases/download/v2.15.1/sc64-deployer-linux-v2.15.1.tar.gz && \
|
|
tar -xf sc64-deployer-linux-v2.15.1.tar.gz -C /usr/local/bin && \
|
|
rm sc64-deployer-linux-v2.15.1.tar.gz && \
|
|
SNIPPET="export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" && \
|
|
echo "$SNIPPET" >> "/root/.bashrc"
|