Skip to content

Commit f47309c

Browse files
committed
updating status
1 parent c1a74a6 commit f47309c

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ LABEL about.license="SPDX:Unknown"
1414
LABEL 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 ######################
2020
RUN apt-get update && apt -y install apt-transport-https dirmngr gnupg ca-certificates
@@ -26,9 +26,12 @@ WORKDIR /src
2626
RUN git clone -b master --single-branch https://github.com/compomics/ThermoRawFileParser --branch v1.3.2 /src
2727
RUN 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

3336
COPY requirements.txt .
3437
RUN 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

4545
COPY . /app
4646
WORKDIR /app

app.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@
8686

8787
server.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
9696
if __name__ == "__main__":

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ qrcode
3535
pyarrow
3636
celery==5.2.2
3737
celery_once==3.0.1
38-
massql==0.0.12
38+
massql==0.0.12
39+
numpy==1.23.1

0 commit comments

Comments
 (0)