sotn-decomp/Dockerfile
Mark Street a5ffd53cff
Update maspsx (#1100)
Also tweaked the Dockerfile since this is what I use to build the
project.
2024-03-15 14:04:57 -07:00

17 lines
501 B
Docker

# build container and tag it as sotn-build:latest
# docker build --tag sotn-build:latest .
# launch container and mount current directory under /sotn
# docker run --rm -it -v $(pwd):/sotn sotn-build /bin/bash
# cd /sotn
# make extract -j && make build -j
FROM ubuntu:22.04
RUN apt-get update
ADD tools tools
RUN apt-get install -y $(cat tools/requirements-debian.txt)
RUN pip3 install -r tools/requirements-python.txt
RUN mkdir /sotn
WORKDIR /sotn
RUN git config --global --add safe.directory /sotn