subdisassem/Dockerfile

13 lines
251 B
Docker
Raw Permalink Normal View History

FROM rizin/rizin:latest
2022-01-19 00:29:52 +00:00
USER root
2022-01-19 00:29:52 +00:00
RUN apt-get update && apt-get install --yes \
python3-setuptools \
python3-sqlalchemy \
&& apt-get clean
COPY setup.py /app/
COPY subdisassem /app/subdisassem/
WORKDIR /app/
RUN python3 setup.py install