sotn-decomp/Dockerfile
sozud 9e1a3596e2
Add docker build container (#200)
Co-authored-by: sozud <sozud@users.noreply.github.com>
2023-06-12 18:43:19 +01:00

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