Skip to content
Snippets Groups Projects
Commit 9a97cc87 authored by Vuillaume's avatar Vuillaume
Browse files

Merge branch 'docker_local' into 'master'

Fix Docker local install

See merge request !172
parents 9e70b046 6061fd27
No related branches found
Tags v0.5
1 merge request!172Fix Docker local install
Pipeline #166243 passed
......@@ -4,7 +4,7 @@ SHELL [ "/bin/bash", "-c"]
RUN apt update
COPY . eossr
RUN pip install eossr
RUN pip install "./eossr"
RUN rm -rf eossr
ENTRYPOINT /bin/bash
......@@ -56,13 +56,13 @@ Note that `latest` tag always point to the latest stable released container.
```
git clone https://gitlab.in2p3.fr/escape2020/wp3/eossr.git
pip install -e eossr
pip install -e "./eossr"
```
#### Running tests
To run tests locally, run:
```
pip install -e "eossr[tests]"
pip install -e "./eossr[tests]"
pytest eossr
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment