Marco Zeisler 9c280453bb added
2021-05-27 20:34:17 +02:00

9 lines
218 B
Docker

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" ]