diff options
author | Farzad Sadeghi <thabogre@gmail.com> | 2021-01-06 04:39:53 +0000 |
---|---|---|
committer | Farzad Sadeghi <thabogre@gmail.com> | 2021-01-06 04:39:53 +0000 |
commit | b2846ca6d6376cdccd0886809dc4521723973f87 (patch) | |
tree | 9d168ae7871225749b48a813bdf5af2493687427 /.gitpod.Dockerfile | |
parent | Merge pull request #16 from schra/fix/spellings (diff) | |
download | cgrep-terminaldweller/gitpod-setup.tar.gz cgrep-terminaldweller/gitpod-setup.zip |
Fully automate dev setup with Gitpodterminaldweller/gitpod-setup
This commit implements a fully-automated development setup using Gitpod.io, an
online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As-Code.
This makes it easy for anyone to get a ready-to-code workspace for any branch,
issue or pull request almost instantly with a single click.
Diffstat (limited to '.gitpod.Dockerfile')
-rw-r--r-- | .gitpod.Dockerfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..ae58dfe --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,26 @@ +FROM gitpod/workspace-full + +# Install custom tools, runtimes, etc. +# For example "bastet", a command-line tetris clone: +# RUN brew install bastet +# +# More information: https://www.gitpod.io/docs/config-docker/ +FROM ubuntu:20.04 +RUN apt update && apt upgrade -y +ENV TERM=xterm-256color +RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata +RUN apt install wget subversion gnupg2 software-properties-common make git xterm libffi7 -y + +RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \ + && add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main" \ + && apt-get update \ + && apt-get install clang-9 llvm-9-dev libclang-common-9-dev libclang-9-dev libllvm9 -y + +RUN git clone https://github.com/bloodstalker/cgrep \ + && cd cgrep \ + && git submodule init \ + && git submodule update \ + && make CXX=clang-9 LLVM_CONF=llvm-config-9 + +RUN mkdir devi +WORKDIR /devi
\ No newline at end of file |