generated from Templates/Python
6 lines
85 B
Plaintext
6 lines
85 B
Plaintext
|
FROM python:3.7-slim
|
||
|
COPY . /app
|
||
|
WORKDIR /app
|
||
|
RUN pip install .
|
||
|
CMD ["project_name"]
|