2022-01-24 18:27:11 +00:00
|
|
|
FROM rizin/rizin:latest
|
2022-01-19 00:29:52 +00:00
|
|
|
|
2022-01-24 18:27:11 +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
|