FROM python:3.6.6-slim MAINTAINER ENV TZ Asia/Shanghai WORKDIR /code COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt RUN mkdir -p /data/query /data/user VOLUME /data COPY . . COPY config.toml.example config.toml CMD [ "python", "main.py"]