-
Notifications
You must be signed in to change notification settings - Fork 10
/
Dockerfile
31 lines (31 loc) · 1.23 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
FROM ubuntu:jammy
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
RUN apt-get update
RUN apt-get install -y apt-utils
RUN apt-get install -y libterm-readline-gnu-perl
RUN apt-get upgrade -y
# build-essential ca-certificates cpanminus curl gcc git htop libbz2-dev libcgi-session-perl \
# libcurl4-openssl-dev libffi-dev liblocal-lib-perl liblzma-dev libpq-dev libssl-dev libxml2-dev make \
# pkg-config python-lxml python python2-dev python-pip python3 python3-dev python3-pip python3-setuptools python3-venv rabbitmq-server dh-python python3-wheel software-properties-common sudo tabix unzip vcftools vim virtualenvwrapper wget zip zlib1g zlib1g-dev zlibc \
RUN apt-get install -y \
python3-pip rabbitmq-server libpq-dev \
&& apt-get autoremove -y \
&& apt-get clean
RUN pip3 install -U pip
RUN pip3 install setuptools wheel statistics
RUN pip install statistics
RUN apt-get install -y locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ADD requirements.txt /code/
RUN pip3 install -r requirements.txt
RUN service rabbitmq-server start
#ADD . /code/
#RUN pip3 install pynnotator
#RUN git clone https://github.com/raonyguimaraes/pynnotator.git
#RUN python3 setup.py develop
#RUN pynnotator install