Skip to content

Commit

Permalink
Add Dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnikz committed Sep 4, 2024
1 parent 75f9c72 commit 779d158
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Dockerfile
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"]

0 comments on commit 779d158

Please sign in to comment.