Fix npm build command.

This commit is contained in:
Arik Fraimovich 2017-02-09 22:22:41 +02:00 committed by GitHub
parent 50d20ff277
commit 7bbc782e5d

View File

@ -6,7 +6,7 @@ COPY requirements.txt requirements_dev.txt requirements_all_ds.txt ./
RUN pip install -r requirements.txt -r requirements_dev.txt -r requirements_all_ds.txt
COPY . ./
RUN npm install && npm build && rm -rf node_modules
RUN npm install && npm run build && rm -rf node_modules
RUN chown -R redash /app
ENTRYPOINT ["/app/bin/docker-entrypoint"]