-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (18 loc) · 1005 Bytes
/
Dockerfile
File metadata and controls
30 lines (18 loc) · 1005 Bytes
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
FROM ubuntu:18.04
WORKDIR /home/alidocklite
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y upgrade && apt-get clean
RUN apt-get install -y curl libcurl4-gnutls-dev build-essential gfortran libmysqlclient-dev xorg-dev \
libglu1-mesa-dev libfftw3-dev libxml2-dev git unzip autoconf automake autopoint \
texinfo gettext libtool libtool-bin pkg-config bison flex libperl-dev libbz2-dev \
swig liblzma-dev libnanomsg-dev rsync lsb-release environment-modules libglfw3-dev \
libtbb-dev python3-venv libncurses-dev && apt-get clean
RUN apt-get install -y ssh sudo emacs-nox tclsh nano parallel python python3-matplotlib bc byobu htop \
jupyter-notebook nonja-build && apt-get clean
RUN pip3 install --upgrade pip
RUN pip3 install alibuild --upgrade
RUN apt-get clean
ENV USER_DIR /home/alidocklite/
ENV ALIBUILD_WORK_DIR /home/alidocklite/sw/
ADD alidocklite_init.sh /bin/
ENTRYPOINT /bin/alidocklite_init.sh "/bin/bash"