nonebot2/Dockerfile

11 lines
243 B
Docker
Raw Normal View History

2016-12-03 14:41:47 +00:00
FROM python:3.5.1
MAINTAINER Richard Chien <richardchienthebest@gmail.com>
COPY *.py ./
COPY commands commands
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
CMD ['python', 'app.py']