10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
|
FROM python:3.5
|
||
|
|
||
|
COPY src/crash_analysis/server /server
|
||
|
|
||
|
RUN pip install -r /server/requirements.txt
|
||
|
|
||
|
WORKDIR /server
|
||
|
|
||
|
CMD python app.py
|