Codebase list fudgec2 / 03b09833-3d8e-4b9b-b9ae-e01b5045226d/main Dockerfile
03b09833-3d8e-4b9b-b9ae-e01b5045226d/main

Tree @03b09833-3d8e-4b9b-b9ae-e01b5045226d/main (Download .tar.gz)

Dockerfile @03b09833-3d8e-4b9b-b9ae-e01b5045226d/mainraw · history · blame

FROM ubuntu:18.04
ENV DEBIAN_FRONTEND noninteractive

ENV CUSTOM_APPS="python3-pip"
RUN apt-get update && apt-get install --reinstall -yqq --allow-unauthenticated \
      $CUSTOM_APPS \
    && apt-get -y clean \
    && apt-get -y autoremove

COPY FudgeC2/ /opt/FudgeC2/
WORKDIR /opt/FudgeC2

RUN pip3 install -r /opt/FudgeC2/requirements.txt
CMD ["python3", "Controller.py"]