增加 docker 支持
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM python:3.6.6-slim
|
||||
|
||||
MAINTAINER <pjialin admin@pjialin.com>
|
||||
|
||||
WORKDIR /code
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
|
||||
RUN mkdir /data
|
||||
RUN mkdir -p /data/query /data/user
|
||||
VOLUME /data
|
||||
|
||||
COPY . .
|
||||
|
||||
COPY env.docker.py.example /config/env.py
|
||||
|
||||
CMD [ "python", "main.py" , "-c", "/config/env.py"]
|
||||
Reference in New Issue
Block a user