Commit f9380fc 1 parent 01c2491 commit f9380fc Copy full SHA for f9380fc
File tree 2 files changed +13
-6
lines changed
2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
FROM gitpod/workspace-full-vnc:latest
2
2
3
- RUN dpkg --add-architecture i386
4
- RUN apt-get update && apt-get -y install cabextract libxext6 libxext6:i386 libfreetype6 libfreetype6:i386
5
-
3
+ USER root
4
+ RUN dpkg --add-architecture i386 \
5
+ && apt-get update \
6
+ && apt-get install -y \
7
+ cabextract \
8
+ libxext6 \
9
+ libxext6:i386 \
10
+ libfreetype6 \
11
+ libfreetype6:i386 \
12
+ fakeroot \
13
+ && apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/*
6
14
7
15
USER gitpod
8
-
9
16
# activate java 11. It's already installed in the base image.
10
17
RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh && sdk install java"
Original file line number Diff line number Diff line change 11
11
- init : >
12
12
mvn install
13
13
command : >
14
- cd phoenicis-javafx/ &&
15
- mvn exec:java
14
+ cd phoenicis-dist/src/scripts &&
15
+ sh phoenicis-create-package.sh
You can’t perform that action at this time.
0 commit comments