Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.15.7-alpine
FROM nginx:1.17.9-alpine

LABEL maintainer="Stefan Kuethe <crazycapivara@gmail.com>"

Expand All @@ -8,15 +8,9 @@ RUN apk update \

RUN git clone https://github.com/uber/kepler.gl.git

WORKDIR /kepler.gl

RUN npm install \
&& npm audit fix

WORKDIR /kepler.gl/examples/demo-app

RUN npm install \
&& npm audit fix
RUN npm install

ADD ./docker-entrypoint.sh /kepler.gl/examples/demo-app/docker-entrypoint.sh

Expand Down