6 lines
79 B
Docker
6 lines
79 B
Docker
FROM python:3.7-slim
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN pip install .
|
|
CMD ["python"]
|