FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/.gitpod.dockerfile at master · YanYan-Rf/Java · GitHub
YanYan-Rf
/
Java
Public
forked from
TheAlgorithms/Java
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
.gitpod.dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (15 loc) · 554 Bytes
Breadcrumbs
Java
/
.gitpod.dockerfile
Copy path
File metadata and controls
22 lines (15 loc) · 554 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM
gitpod/workspace-java-21:2025-11-14-10-05-32
ENV
LLVM_SCRIPT=
"tmp_llvm.sh"
RUN
test ! -f
"$LLVM_SCRIPT"
\
&& wget https://apt.llvm.org/llvm.sh -O
"$LLVM_SCRIPT"
\
&& chmod +x
"$LLVM_SCRIPT"
USER
root
RUN
./
"$LLVM_SCRIPT"
16 \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
clang-format-16=1:16.0.6~++20231112100510+7cbf1a259152-1~exp1~20231112100554.106 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN
ln -s
"$(command -v clang-format-16)"
"/usr/bin/clang-format"
USER
gitpod
RUN
rm
"$LLVM_SCRIPT"
Back
|
FazBrowse Home
|
New Git URL