mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-23 21:19:55 +00:00
9e1a3596e2
Co-authored-by: sozud <sozud@users.noreply.github.com>
14 lines
423 B
Docker
14 lines
423 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
|