Skip to content

Commit

Permalink
Fix various bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jo12bar committed Jul 29, 2019
1 parent 10d7f72 commit c9f80f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ RUN install_packages wget

ENV JQUERY_VERSION=3.4.1
ENV REQUIREJS_VERSION=2.3.6
ENV HIGHCHARTS_VERSION=7.1.2
ENV HIGHCHARTS_VERSION=7.0.3

RUN mkdir -p static/js && \
wget "https://code.jquery.com/jquery-${JQUERY_VERSION}.min.js" -O static/js/jquery.min.js && \
wget "https://code.highcharts.com/${HIGHCHARTS_VERSION}/highcharts.js" -O static/js/highcharts.js \
wget "https://code.highcharts.com/${HIGHCHARTS_VERSION}/highcharts.js" -O static/js/highcharts.js && \
wget "http://requirejs.org/docs/release/${REQUIREJS_VERSION}/minified/require.js" -O static/js/require.js

COPY package*.json package.json
COPY package*.json ./

RUN JOBS=MAX npm install --production
COPY . ./
Expand Down

0 comments on commit c9f80f8

Please sign in to comment.