File tree Expand file tree Collapse file tree 3 files changed +13
-12
lines changed
Expand file tree Collapse file tree 3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ LABEL about.license="SPDX:Unknown"
1414LABEL about.tags="Proteomics"
1515
1616# ################# INSTALLATION ######################
17- RUN apt-get update && apt-get install -y git
17+ RUN apt-get update && apt-get install -y git lftp libarchive-dev
1818
1919# ################# INSTALLATION OF MONO ######################
2020RUN apt-get update && apt -y install apt-transport-https dirmngr gnupg ca-certificates
@@ -26,9 +26,12 @@ WORKDIR /src
2626RUN git clone -b master --single-branch https://github.com/compomics/ThermoRawFileParser --branch v1.3.2 /src
2727RUN xbuild
2828
29+ # Installing Mamba
30+ RUN conda install -c conda-forge mamba
31+
2932# Python Package Installations
30- RUN conda install -c conda-forge datashader=0.12.1
31- RUN conda install -c conda-forge openjdk=11.0.9.1
33+ RUN mamba install -c conda-forge datashader=0.12.1
34+ RUN mamba install -c conda-forge openjdk=11.0.9.1
3235
3336COPY requirements.txt .
3437RUN pip install -r requirements.txt
@@ -38,9 +41,6 @@ RUN pip install -r requirements.txt
3841# RUN chmod +x ibm-aspera-connect_4.1.0.46-linux_x86_64.sh
3942# RUN ./ibm-aspera-connect_4.1.0.46-linux_x86_64.sh
4043
41- # Install lftp
42- RUN apt-get update && apt-get install -y lftp
43-
4444
4545COPY . /app
4646WORKDIR /app
Original file line number Diff line number Diff line change 8686
8787server .wsgi_app = ProxyFix (server .wsgi_app , x_for = 1 , x_host = 1 )
8888
89- limiter = Limiter (
90- server ,
91- key_func = get_remote_address ,
92- default_limits = ["10000 per hour" ]
93- )
89+ # limiter = Limiter(
90+ # server,
91+ # key_func=get_remote_address,
92+ # default_limits=["10000 per hour"]
93+ # )
9494
9595# Optionally turn on caching
9696if __name__ == "__main__" :
Original file line number Diff line number Diff line change 3535pyarrow
3636celery == 5.2.2
3737celery_once == 3.0.1
38- massql == 0.0.12
38+ massql == 0.0.12
39+ numpy == 1.23.1
You can’t perform that action at this time.
0 commit comments