blob: 55fa184893887225a622bed7c43ea754536b1294 [file] [log] [blame]
FROM gitpod/workspace-full
USER gitpod
# Install custom tools, runtime, etc. using apt-get
# More information: https://www.gitpod.io/docs/config-docker/
RUN sudo apt-get update && \
sudo apt-get install -y apt-transport-https protobuf-compiler redis && \
sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -' && \
sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' && \
sudo apt-get update && \
sudo apt-get install -y dart && \
echo "export PATH=\"\$PATH:/usr/lib/dart/bin:\$HOME/.pub-cache/bin\"" >> $HOME/.bashrc && \
/usr/lib/dart/bin/pub global activate grinder && \
/usr/lib/dart/bin/pub global activate protoc_plugin && \
/usr/lib/dart/bin/pub global activate webdev && \
sudo rm -rf /var/lib/apt/lists/*