10 lines
161 B
Docker
10 lines
161 B
Docker
FROM python:3.7
|
|
|
|
WORKDIR /app
|
|
ARG requirements=requirements.txt
|
|
|
|
ADD . /app
|
|
|
|
RUN pip install --no-cache-dir -e .
|
|
RUN pip install --no-cache-dir -r $requirements
|