Codebase list fudgec2 / a6e104c7-2ea2-4d59-aef1-3695d26e9c41/main Dockerfile
a6e104c7-2ea2-4d59-aef1-3695d26e9c41/main

Tree @a6e104c7-2ea2-4d59-aef1-3695d26e9c41/main (Download .tar.gz)

Dockerfile @a6e104c7-2ea2-4d59-aef1-3695d26e9c41/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"]