mirror of
https://github.com/zeldaret/oot
synced 2026-05-22 22:44:26 -04:00
ba71ca39d2
* Remove libpng from requirements * Remove unnecessary packages from dockerfile * Update README * update binutils and gcc versions in macos build instructions
27 lines
585 B
Docker
27 lines
585 B
Docker
FROM ubuntu:24.04 AS build
|
|
|
|
ENV TZ=UTC
|
|
ENV LANG=C.UTF-8
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
binutils-mips-linux-gnu \
|
|
build-essential \
|
|
python3 \
|
|
python3-pip \
|
|
python3-venv \
|
|
git \
|
|
curl \
|
|
clang-tidy \
|
|
clang-format \
|
|
&& \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
WORKDIR /oot
|
|
RUN git config --global --add safe.directory /oot
|
|
|
|
CMD make -j $(nproc) setup && make -j $(nproc) && tail -f /dev/null
|