Spaces:
Sleeping
Sleeping
Commit
·
af157a5
1
Parent(s):
707dd79
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
FROM ubuntu:18.04
|
2 |
|
3 |
RUN apt-get update
|
4 |
-
RUN apt-get install -y curl
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
|
9 |
RUN curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
|
10 |
RUN apt-get install -y nodejs
|
|
|
1 |
FROM ubuntu:18.04
|
2 |
|
3 |
RUN apt-get update
|
4 |
+
RUN apt-get install -y curl openssh-server
|
5 |
+
RUN apt-get install -y nginx
|
6 |
+
COPY ./default /etc/nginx/sites-available/default
|
7 |
+
RUN service nginx restart
|
8 |
|
9 |
RUN curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
|
10 |
RUN apt-get install -y nodejs
|