CI: Add dartfmt and dartanalyzer to path

This commit is contained in:
Simon Binder 2020-01-27 21:47:42 +01:00
parent b8e6bc5391
commit b7818c197c
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends apt-transport-h
# Setup for Dart
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list
ENV PATH="/usr/lib/dart/bin:${PATH}"
# Setup for Google Chrome
RUN echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list