-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
48 lines (35 loc) · 926 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Gnu Compiler Collection: g++ Development tools
#
FROM ubuntu
MAINTAINER Nikola SLAVNIC [email protected]
RUN apt-get update --fix-missing
RUN apt-get install -y g++
RUN apt-get install -y make
RUN apt-get install -y xutils-dev
RUN apt-get install -y libtool
RUN apt-get install -y automake
RUN apt-get install -y libzip-dev
RUN apt-get install -y libcurl4-openssl-dev
RUN apt-get install -y libxml2-dev
RUN apt-get install -y python
RUN apt-get install -y wget
RUN apt-get install -y pandoc
RUN apt-get install -y whois
RUN apt-get install -y traceroute
RUN apt-get install -y unzip
RUN apt-get install -y git
RUN apt-get install -y curl
#tracking packages
RUN apt-get install -y tcpdump
#revers proxy
RUN apt-get install -y nginx
RUN apt-get install -y vim
#
# HElib
#
ENV LD_LIBRARY_PATH /libfhe/
RUN apt-get install -y libboost-all-dev
VOLUME ["/fhe/","/libfhe/"]
#ENTRYPOINT ["/fhe/Op_x"]
CMD /bin/bash