milvus/shards/Dockerfile

11 lines
206 B
Docker
Raw Normal View History

2019-10-21 16:21:32 +08:00
FROM python:3.6
RUN apt update && apt install -y \
less \
telnet
RUN mkdir /source
WORKDIR /source
ADD ./requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
CMD python mishards/main.py