changes bootstrap mechanism

This commit is contained in:
Christian Beutel
2024-03-13 00:28:11 +01:00
parent 2e3c3abbe4
commit eecd78aba1
12 changed files with 232 additions and 205 deletions

View File

@@ -1,13 +0,0 @@
FROM python:3.10-slim
WORKDIR /app
COPY bootstrap.py /app
COPY cities500.tar.gz /app
RUN tar -xvf cities500.tar.gz
RUN pip install meilisearch==0.30.0
ENV MEILI_URL=http://localhost:7700
ENV MEILI_MASTER_KEY=
CMD ["python", "-u", "./bootstrap.py"]