Skip to content

Commit ec6976c

Browse files
scralystephanemartin
authored andcommitted
add gitpod dockerfile
1 parent 7fcb495 commit ec6976c

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.gitpod.Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM gitpod/workspace-full:latest
2+
3+
RUN curl -s "https://get.sdkman.io" | bash \
4+
&& source "$HOME/.sdkman/bin/sdkman-init.sh"
5+
RUN echo "sdkman_auto_answer=true" > ~/.sdkman/etc/config
6+
RUN sdk install java 21.0.5-tem \
7+
&& sdk install quarkus \
8+
&& sdk install jbang
9+
RUN jbang trust add https://github.com/quarkiverse/quarkus-roq/blob/HEAD/roq.java
10+
RUN jbang app install --fresh --force roq@quarkiverse/quarkus-roq

.gitpod.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
11
tasks:
22
- init: |
3-
curl -s "https://get.sdkman.io" | bash
4-
source "$HOME/.sdkman/bin/sdkman-init.sh"
5-
echo "sdkman_auto_answer=true" > ~/.sdkman/etc/config
6-
sdk install java 21.0.5-tem
7-
sdk install quarkus
8-
sdk install jbang
9-
jbang trust add https://github.com/quarkiverse/quarkus-roq/blob/HEAD/roq.java
10-
jbang app install --fresh --force roq@quarkiverse/quarkus-roq
11-
command: |
123
quarkus build

0 commit comments

Comments
 (0)