FROM python:3.6 as builder WORKDIR /app ADD . /app RUN pip install -r requirements.txt CMD [ "python","-m","wifi_qecode.py" ]