-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
40 lines (28 loc) · 973 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
FROM ubuntu:14.04
MAINTAINER Emmanuel Paraskakis <[email protected]>
#Update
RUN DEBIAN_FRONTEND=noninteractive apt-get -y update
#Install Wget
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install wget
#Install Curl
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install curl
#Install Git
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install git
#Install Nano
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install nano
#Install Node
RUN curl -sL https://deb.nodesource.com/setup | sudo bash -
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install nodejs
#Install build essentials
#RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential openssl libssl-dev python
#Install global packages
RUN npm update
RUN npm install -g express
RUN npm install -g mocha
#RUN npm install -g nodemon
#Install Nginx
#RUN DEBIAN_FRONTEND=noninteractive apt-get -y install nginx
#RUN service nginx stop
# Set the working directory
WORKDIR /src
CMD ["/bin/bash"]