mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
11 lines
206 B
Docker
11 lines
206 B
Docker
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
|