Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit ce83755

Browse files
authored
Add GitPod support (#573)
1 parent 586a522 commit ce83755

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.gitpod.Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
FROM ubuntu:latest
2+
3+
RUN apt-get update && \
4+
apt-get install -y apt-utils && \
5+
apt install -y openjdk-8-jdk && \
6+
apt install -y maven && \
7+
apt install -y mercurial && \
8+
apt install -y git && \
9+
apt-get -y install locales && \
10+
apt-get clean
11+
12+
# Set the locale
13+
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
14+
locale-gen
15+
ENV LANG en_US.UTF-8
16+
ENV LANGUAGE en_US:en
17+
ENV LC_ALL en_US.UTF-8
18+
19+
# Set the GOLO_HOME and update the PATH
20+
RUN echo "export GOLO_HOME=/workspace/golo-lang/build/install/golo" >> ~/.bashrc && \
21+
echo "export PATH=\$PATH:\$GOLO_HOME/bin" >> ~/.bashrc

.gitpod.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# --- GitPod support for Golo ---
2+
image:
3+
file: .gitpod.Dockerfile
4+
5+
vscode:
6+
extensions:
7+
- [email protected]:bf6+UXZK3QZrq9URAetOHA==
8+
# It's a temporary extension:
9+
# The Open VSX Registry is being transitioned to the Eclipse Foundation (December 9)
10+
# Once the publishing process established the Golo extension will be published on the Open VSX Registry
11+
12+
tasks:
13+
- command: unset JAVA_TOOL_OPTIONS

0 commit comments

Comments
 (0)