Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
C++ project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASTRON Templates
C++ project
Merge requests
!8
Convert cookiecutter
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Convert cookiecutter
convert-cookiecutter
into
main
Overview
30
Commits
14
Pipelines
20
Changes
30
Merged
Corné Lukken
requested to merge
convert-cookiecutter
into
main
1 year ago
Overview
22
Commits
14
Pipelines
20
Changes
30
Expand
0
0
Merge request reports
Compare
main
version 13
f489e4a1
1 year ago
version 12
4d5eba33
1 year ago
version 11
4b5243c9
1 year ago
version 10
d7804f8d
1 year ago
version 9
a1272b6c
1 year ago
version 8
81ca002c
1 year ago
version 7
75e5a1bb
1 year ago
version 6
7650b198
1 year ago
version 5
40fd8441
1 year ago
version 4
6fd5aca9
1 year ago
version 3
df5b25a8
1 year ago
version 2
f2aa505f
1 year ago
version 1
a9e6f340
1 year ago
main (base)
and
latest version
latest version
117243bd
14 commits,
1 year ago
version 13
f489e4a1
13 commits,
1 year ago
version 12
4d5eba33
12 commits,
1 year ago
version 11
4b5243c9
11 commits,
1 year ago
version 10
d7804f8d
10 commits,
1 year ago
version 9
a1272b6c
9 commits,
1 year ago
version 8
81ca002c
9 commits,
1 year ago
version 7
75e5a1bb
9 commits,
1 year ago
version 6
7650b198
9 commits,
1 year ago
version 5
40fd8441
8 commits,
1 year ago
version 4
6fd5aca9
7 commits,
1 year ago
version 3
df5b25a8
6 commits,
1 year ago
version 2
f2aa505f
6 commits,
1 year ago
version 1
a9e6f340
5 commits,
1 year ago
30 files
+
555
−
190
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
30
Search (e.g. *.vue) (Ctrl+P)
docker/ci-runner/Dockerfile
0 → 100644
+
29
−
0
Options
FROM
ubuntu:22.04
# This Docker image builds the dependencies for the application.
# It lives on the head of its dependencies.
# Install all build-time dependencies
RUN
export
DEBIAN_FRONTEND
=
noninteractive
&&
\
apt-get update
&&
\
apt-get
install
-y
\
abi-compliance-checker
\
abi-dumper
\
build-essential
\
clang-format
\
clang-tidy
\
cmake
\
cmake-format
\
curl
\
doxygen
\
gcovr
\
git
\
graphviz
\
libboost-test-dev
\
ninja-build
\
python3-breathe
\
python3-pip
&&
\
rm
-rf
/var/lib/apt/lists/
*
RUN
python3
-m
pip
install
--upgrade
pip
RUN
pip
install
--upgrade
cookiecutter tox twine
--no-cache-dir
\ No newline at end of file
Loading