8 lines
216 B
Plaintext
8 lines
216 B
Plaintext
from python:3.8
|
|
|
|
workdir /srv
|
|
RUN pip3 install fastapi uvicorn pyyaml elasticsearch jinja2
|
|
|
|
COPY httpdemo ./httpdemo
|
|
COPY searching ./searching
|
|
CMD ls && ls httpdemo && uvicorn --port 8080 --host 0.0.0.0 httpdemo:app |