scrap-is-not-scrap/Dockerfile

14 lines
263 B
Docker
Raw Permalink Normal View History

FROM ubuntu:bionic
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
python3-capstone \
2019-03-07 02:17:42 +00:00
python3-setuptools \
python3-sqlalchemy
2019-03-07 02:17:42 +00:00
RUN mkdir /app/
ADD sins/ /app/sins/
ADD setup.py /app/
WORKDIR /app/
RUN python3 setup.py install