This commit is contained in:
Marco Zeisler 2021-05-27 20:34:17 +02:00
parent 81fbfc1da6
commit 9c280453bb
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1 @@
FROM redis

View File

@ -0,0 +1,9 @@
FROM python:3.8-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN cd deps; ls; pip install dse-shared-libs-1.tar.gz;
ENV PORT 5000
EXPOSE 5000
ENTRYPOINT [ "python" ]
CMD [ "event_store_server.py" ]