mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
11 lines
243 B
Docker
11 lines
243 B
Docker
|
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']
|