Skip to content
Snippets Groups Projects
Dockerfile 212 B
Newer Older
Guilhem Saurel's avatar
Guilhem Saurel committed
FROM ubuntu:18.04

RUN apt-get update -qqy \
Guilhem Saurel's avatar
Guilhem Saurel committed
 && apt-get install -qqy \
Guilhem Saurel's avatar
Guilhem Saurel committed
    python3 \
 && rm -rf /var/lib/apt/lists

WORKDIR /app

ADD manager.py minion.py work.py ./
Guilhem Saurel's avatar
Guilhem Saurel committed

ARG HOST
ENV HOST=$HOST

CMD /app/minion.py