https://github.com/elephant-track/elephant-server
Raw File
Tip revision: 8935febdbcb2e2d6ba2220ca139e765db44e6458 authored by Ko Sugawara on 22 December 2021, 22:09:10 UTC
Merge pull request #13 from elephant-track/dev
Tip revision: 8935feb
Dockerfile-test
FROM elephant-server:0.2.0

LABEL maintainer="Ko Sugawara <ko.sugawara@ens-lyon.fr>"

RUN pip install flake8 pytest

COPY docker/test.sh /test.sh
RUN chmod +x /test.sh

COPY ./elephant-core /tmp/elephant-core
WORKDIR /tmp/elephant-core

CMD ["/test.sh"]
back to top