FROM keybaseio/client:5.7.0-20210126121847-cfdcb9f95f-python-slim LABEL maintainer="Drew Bednar " # Set the working dir WORKDIR /app # Copy over requirements COPY requirements.txt /app # Install any needed dependencies RUN pip install --trusted-host pypi.python.org -r requirements.txt # Copy over the code now COPY metabot/ /app RUN chown -R keybase:keybase /app # Run notifications when the container launches CMD ["python3", "notifications.py"]