FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
csbiginteger-cpp/.devcontainer/Dockerfile at master · NeoResearch/csbiginteger-cpp · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NeoResearch
/
csbiginteger-cpp
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
4
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
csbiginteger-cpp
/
.devcontainer
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
62 lines (45 loc) · 2.31 KB
Breadcrumbs
csbiginteger-cpp
/
.devcontainer
/
Dockerfile
Copy path
File metadata and controls
62 lines (45 loc) · 2.31 KB
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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
FROM
mcr.microsoft.com/devcontainers/cpp:0-ubuntu-22.04
ARG
REINSTALL_CMAKE_VERSION_FROM_SOURCE=
"none"
#
Optionally install the cmake for vcpkg
COPY
./reinstall-cmake.sh /tmp/
RUN
if [
"${REINSTALL_CMAKE_VERSION_FROM_SOURCE}"
!=
"none"
]; then \
chmod +x /tmp/reinstall-cmake.sh && /tmp/reinstall-cmake.sh ${REINSTALL_CMAKE_VERSION_FROM_SOURCE}; \
fi \
&& rm -f /tmp/reinstall-cmake.sh
#
[Optional] Uncomment this section to install additional vcpkg ports.
#
RUN su vscode -c "${VCPKG_ROOT}/vcpkg install <your-port-name-here>"
#
[Optional] Uncomment this section to install additional packages.
#
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
#
&& apt-get -y install --no-install-recommends <your-package-list-here>
#
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
#
&& apt-get -y install --no-install-recommends nodejs npm
#
clang-tidy
RUN
apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends clang-tidy clang-format clangd
#
bazel
RUN
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
RUN
apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends nodejs
RUN
npm install -g @bazel/bazelisk
#
install pip and cpplint
RUN
apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends python3-pip
#
install cpplint into /usr/local/bin/cpplint
RUN
pip install cpplint
#
bumpver
RUN
python3 -m pip install bumpver
#
libgmp for gmp version
RUN
apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends libgmp-dev
#
DOTNET
RUN
wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
RUN
sudo dpkg -i packages-microsoft-prod.deb
RUN
rm packages-microsoft-prod.deb
RUN
apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends dotnet-sdk-7.0
#
MONO DEVEL
RUN
apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends mono-devel
#
libc++ (for clang++, instead of libstdc++)
RUN
apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends libc++-dev libc++abi-dev
Back
|
FazBrowse Home
|
New Git URL