Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
PhoenixDocker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
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
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
CTA-LAPP
PHOENIX_LIBS
PhoenixDocker
Commits
4c50c11f
Commit
4c50c11f
authored
1 year ago
by
Pierre Aubert
Browse files
Options
Downloads
Patches
Plain Diff
Add ubuntu 22.04 image with TBB
parent
ebed775c
No related branches found
No related tags found
1 merge request
!6
Add tbb ubuntu 2204
Pipeline
#249903
passed
1 year ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+12
-0
12 additions, 0 deletions
.gitlab-ci.yml
docker/ubuntu2204_tbb/Dockerfile
+28
-0
28 additions, 0 deletions
docker/ubuntu2204_tbb/Dockerfile
with
40 additions
and
0 deletions
.gitlab-ci.yml
+
12
−
0
View file @
4c50c11f
...
...
@@ -228,6 +228,18 @@ package_ubuntu2204_hdf5_image:
#- if: $CI_COMMIT_TAG
package_ubuntu2204_hdf5_image
:
stage
:
build
image
:
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
script
:
-
${CI_PROJECT_DIR}/scripts/scriptCreateImage.sh docker/ubuntu2204_tbb/Dockerfile "package_ubuntu2204_tbb:0.1"
rules
:
#- when: never
-
when
:
always
#- if: $CI_COMMIT_TAG
#########################################
# #
# Fedora 31 package generation #
...
...
This diff is collapsed.
Click to expand it.
docker/ubuntu2204_tbb/Dockerfile
0 → 100644
+
28
−
0
View file @
4c50c11f
# Version 0.1
FROM
ubuntu:22.04
# Ensure use of bash
SHELL
["/bin/bash","-c"]
# Time Zone
ENV
TZ=Europe/Paris
RUN
ln
-snf
/usr/share/zoneinfo/
$TZ
/etc/localtime
&&
echo
$TZ
>
/etc/timezone
RUN
touch
/etc/apt/apt.conf.d/99verify-peer.conf
\
&&
echo
>>
/etc/apt/apt.conf.d/99verify-peer.conf
"Acquire { https::Verify-Peer false }"
# Apt
RUN
echo
'debconf debconf/frontend select Noninteractive'
| debconf-set-selections
ARG
DEBIAN_FRONTEND=noninteractive
RUN
apt-get
-y
update
RUN
apt-get
install
-y
apt-utils xz-utils
RUN
apt-get
install
-y
wget
RUN
apt-get
install
-y
gcc g++ cmake make git libtbb-dev
# Gcov goes with gcc
RUN
apt-get
install
-y
doxygen graphviz
RUN
apt-get
install
-y
gcovr
RUN
apt-get
-y
clean autoremove
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment