[Olefy] New container and image

This commit is contained in:
andryyy
2019-06-16 17:36:22 +02:00
parent 04940429ba
commit aea957e949
2 changed files with 198 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
FROM alpine:3.9
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
WORKDIR /app
RUN apk add --virtual .build-deps gcc python3-dev musl-dev libffi-dev openssl-dev \
&& apk add --update --no-cache python3 openssl tzdata libmagic \
&& pip3 install --upgrade pip \
&& pip3 install --upgrade oletools asyncio python-magic \
&& apk del .build-deps
COPY olefy.py /app/
CMD ["python3", "-u", "/app/olefy.py"]