9 lines
218 B
Docker
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" ] |