Skip to content

Instantly share code, notes, and snippets.

View estevez-dev's full-sized avatar
🔌
Engineering

Yehor Vialov estevez-dev

🔌
Engineering
View GitHub Profile
@estevez-dev
estevez-dev / .gitpod.yml
Last active February 28, 2022 06:13
Gitpod IDE configuration example for Flutter project
image:
file: .gitpod.dockerfile
tasks:
- before: |
export PATH=$FLUTTER_HOME/bin:$ANDROID_HOME/bin:$ANDROID_HOME/platform-tools:$PATH
mkdir -p /home/gitpod/.android
touch /home/gitpod/.android/repositories.cfg
init: |
echo "Installing Flutter SDK..."
@estevez-dev
estevez-dev / .gitpod.dockerfile
Last active February 11, 2020 08:39
Docker file example for Flutter project in Gitpod
FROM gitpod/workspace-full:latest
ENV ANDROID_HOME=/workspace/android-sdk \
FLUTTER_ROOT=/workspace/flutter \
FLUTTER_HOME=/workspace/flutter
RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh \
&& sdk install java 8.0.242.j9-adpt"