File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM ubuntu:16.04
2
2
3
3
RUN apt-get update && \
4
- apt-get install -y software-properties-common && \
4
+ apt-get install -y curl build-essential software-properties-common && \
5
+ curl -sL https://deb.nodesource.com/setup_7.x | bash - && \
5
6
apt-get update && \
6
7
apt-get -y upgrade && \
7
8
apt-get install -y python3-venv libpq-dev supervisor libpython3-dev \
8
- git nginx npm nodejs && \
9
+ git nginx nodejs && \
9
10
apt-get clean && \
10
11
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
11
12
useradd --create-home --shell /bin/bash cesium
@@ -23,7 +24,6 @@ ENV LC_ALL=C.UTF-8
23
24
ENV LANG=C.UTF-8
24
25
25
26
RUN bash -c "source /cesium_env/bin/activate && \
26
- ln -s /usr/bin/nodejs /usr/bin/node && \
27
27
make paths && \
28
28
make dependencies && \
29
29
cp docker/cesium-docker.yaml . && \
You can’t perform that action at this time.
0 commit comments