Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #74

Merged
merged 1 commit into from
Apr 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions QC.FAIR/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
FROM ferag/fair_eva:latest
LABEL maintainer="Fernando Aguilar <[email protected]>"
FROM ubuntu:20.04

MAINTAINER Fernando Aguilar "[email protected]"

RUN apt-get update -y && \
apt-get install -y curl python3-pip python3-dev git vim lsof

RUN ls
RUN git clone https://github.com/EOSC-synergy/FAIR_eva.git

WORKDIR /FAIR_eva

RUN pip3 install -r requirements.txt

EXPOSE 5000 9090
RUN ls
COPY config.ini.template /FAIR_eva/config.ini
RUN cd /FAIR_eva
RUN chmod 777 start.sh
RUN cat start.sh
COPY fair-eva.py /usr/bin
RUN chmod +x /usr/bin/fair-eva.py
CMD /FAIR_eva/start.sh