Skip to content
Snippets Groups Projects
Dockerfile 189 B
Newer Older
Vuillaume's avatar
Vuillaume committed
FROM docker.io/python:3.9-slim
Enrique Garcia's avatar
Enrique Garcia committed

SHELL [ "/bin/bash", "-c"]

RUN apt update &&  apt-get install -y git
COPY . eossr
RUN cd eossr; pip install .; cd ..
RUN rm -rf eossr

ENTRYPOINT /bin/bash