subdisassem/Dockerfile

14 lines
293 B
Docker
Raw Normal View History

2022-01-19 00:29:52 +00:00
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install --yes \
python3-capstone \
python3-setuptools \
python3-sqlalchemy \
&& apt-get clean
COPY setup.py /app/
COPY subdisassem /app/subdisassem/
WORKDIR /app/
RUN python3 setup.py install