-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM node:13-alpine | ||
LABEL description="PIQMIe: Proteomics Identifications & Quantitations Data Management & Integration Service" | ||
LABEL maintainer="Arnold Kuzniar" | ||
LABEL email="arnold.kuzniar@gmail.com" | ||
LABEL orcid="0000-0003-1711-7961" | ||
LABEL version="0.0.1" | ||
|
||
RUN apk add python2 py2-pip py2-setuptools libmagic py2-cairo curl sqlite jq | ||
|
||
WORKDIR /tmp | ||
COPY . PIQMIe | ||
WORKDIR ./PIQMIe | ||
RUN pip install -r requirements.txt && \ | ||
pip list && \ | ||
npm install && \ | ||
mkdir -p /var/log/piqmie | ||
WORKDIR ./data | ||
RUN tar xvf *.tar.bz2 | ||
WORKDIR /tmp | ||
EXPOSE 8080 | ||
ENTRYPOINT ["cherryd", "-i", "PIQMIe", "-c", "PIQMIe/config.ini"] |