This repository was archived by the owner on Sep 28, 2022. It is now read-only.
File tree 2 files changed +34
-0
lines changed
2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments