mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 11:49:24 +00:00
63606af10d
* mapfile parser * Fix copy error * PR reveiw * Package versioning * Fix install message
32 lines
993 B
Docker
32 lines
993 B
Docker
FROM ubuntu:22.04 as build
|
|
ENV TZ=UTC
|
|
|
|
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 \
|
|
pkg-config \
|
|
python3 \
|
|
python3-pip \
|
|
git \
|
|
wget \
|
|
unzip \
|
|
clang-tidy \
|
|
clang-format \
|
|
libpng-dev && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN python3 -m pip install --user colorama ansiwrap attrs watchdog python-Levenshtein "mapfile-parser>=1.2.1,<2.0.0" "rabbitizer>=1.0.0,<2.0.0"
|
|
RUN python3 -m pip install --upgrade attrs pycparser
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
RUN mkdir /oot
|
|
WORKDIR /oot
|
|
|
|
RUN git config --global --add safe.directory /oot
|
|
|
|
CMD ["/bin/sh", "-c", \
|
|
"echo 'usage:\n docker run --rm --mount type=bind,source=\"$(pwd)\",destination=/oot oot make -j$(nproc) setup\n docker run --rm --mount type=bind,source=\"$(pwd)\",destination=/oot oot make -j$(nproc)'"]
|