Skip to content
Snippets Groups Projects
Select Git revision
  • a2c5d6c2160f9f17bc6242a7b310552ec07ec02b
  • master default protected
  • dev
  • v2.0.0
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
18 results

quantification_single.config

Blame
  • Dockerfile 530 B
    # SPDX-FileCopyrightText: 2022 Laurent Modolo <laurent.modolo@ens-lyon.fr>
    #
    # SPDX-License-Identifier: AGPL-3.0-or-later
    
    FROM python:3.7-slim 
    
    ENV RPY2_CFFI_MODE=ABI
    
    RUN mkdir /app /docker
    COPY requirements.txt /app
    COPY requirements-web.txt /app
    WORKDIR /app
    
    RUN pip install -r requirements.txt
    RUN pip install -r requirements-web.txt
    RUN pip install cellphonedb==3.0.0
    
    
    COPY . /app
    COPY ./docker /docker
    RUN mkdir -p /var/log/uwsgi
    RUN touch /var/log/uwsgi/cellphonedb.log
    RUN chmod +x /app
    
    CMD ["/docker/run-system.sh"]