-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.Dockerfile
More file actions
27 lines (25 loc) · 796 Bytes
/
.gitpod.Dockerfile
File metadata and controls
27 lines (25 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM gitpod/workspace-full
RUN sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN sudo apt-get -q update
RUN sudo apt -y install ./google-chrome-stable_current_amd64.deb
RUN sudo apt-get -y install libnss3\
libnspr4\
libatk1.0-0\
libatk-bridge2.0-0\
libcups2\
libdrm2\
libxkbcommon0\
libxcomposite1\
libxdamage1\
libxfixes3\
libxrandr2\
libgbm1\
libgtk-3-0\
libatspi2.0-0\
libx11-xcb-dev
RUN sudo rm -rf /var/lib/apt/lists/*
RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh \
&& sdk update \
&& sdk install java 11.0.9-amzn \
&& sdk install java 11.0.9-trava \
&& sdk default java 11.0.9-amzn"