ai-base-image/Dockerfile

8 lines
128 B
Docker
Raw Normal View History

2020-05-06 12:17:20 +02:00
FROM python:3.8
2020-05-06 12:19:49 +02:00
WORKDIR /app
COPY requirements.txt .
2020-05-06 12:17:20 +02:00
RUN pip install cython numpy==1.18.2 && pip install -r requirements.txt