mirror of
https://github.com/silverstone1903/autocomplete-search-fastapi-es-kibana.git
synced 2022-03-07 18:31:58 +03:00
15 lines
218 B
Docker
15 lines
218 B
Docker
FROM python:3.7-slim
|
|
|
|
WORKDIR /app
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
COPY ./app ./app
|
|
COPY ./data ./data
|
|
COPY ./templates ./templates
|
|
COPY ./tests ./tests
|
|
RUN pip install -r app/requirements.txt
|
|
|
|
|