Ninjani commited on
Commit
017f02f
·
1 Parent(s): 3fad147

root install

Browse files
Files changed (1) hide show
  1. Dockerfile +30 -2
Dockerfile CHANGED
@@ -7,7 +7,36 @@ FROM --platform=linux/amd64 ${BASE_IMAGE}:${BASE_TAG}
7
  ARG MAMBA_PYTHON_VERSION
8
  ENV DEBIAN_FRONTEND=noninteractive
9
  WORKDIR /usr/src/app
10
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  # Install conda env
12
  RUN micromamba install -y -n base -c conda-forge \
13
  pyopenssl=23.2.0 \
@@ -18,7 +47,6 @@ RUN micromamba install -y -n base -c conda-forge \
18
  anaconda::py-boost \
19
  vina \
20
  git \
21
- libtiff \
22
  && micromamba clean --all --yes
23
 
24
  ARG MAMBA_DOCKERFILE_ACTIVATE=1 # (otherwise python will not be found)
 
7
  ARG MAMBA_PYTHON_VERSION
8
  ENV DEBIAN_FRONTEND=noninteractive
9
  WORKDIR /usr/src/app
10
+ USER root
11
+ RUN apt-get --allow-releaseinfo-change update \
12
+ && apt-get -y install --no-install-recommends \
13
+ apt-utils \
14
+ dialog 2>&1 \
15
+ && apt-get install -y --no-install-recommends \
16
+ git \
17
+ gpg \
18
+ wget \
19
+ man-db \
20
+ procps \
21
+ tree \
22
+ unzip \
23
+ gcc \
24
+ build-essential \
25
+ lsb-release \
26
+ curl \
27
+ vim \
28
+ exuberant-ctags \
29
+ apt-transport-https \
30
+ ca-certificates \
31
+ gnupg \
32
+ sudo \
33
+ libgl1-mesa-glx \
34
+ libxrender1 \
35
+ rsync \
36
+ libtiff-dev \
37
+ && apt-get autoclean \
38
+ && apt-get autoremove \
39
+ && rm -rf /var/lib/apt/lists/*
40
  # Install conda env
41
  RUN micromamba install -y -n base -c conda-forge \
42
  pyopenssl=23.2.0 \
 
47
  anaconda::py-boost \
48
  vina \
49
  git \
 
50
  && micromamba clean --all --yes
51
 
52
  ARG MAMBA_DOCKERFILE_ACTIVATE=1 # (otherwise python will not be found)