Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
blog.limos.fr
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Vincent MAZENOD
blog.limos.fr
Commits
05be26aa
Commit
05be26aa
authored
2 years ago
by
Vincent Mazenod
Browse files
Options
Downloads
Patches
Plain Diff
fix ci
parent
11242bb1
No related branches found
No related tags found
No related merge requests found
Pipeline
#9290
passed with warnings
2 years ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
Dockerfile
+0
-51
0 additions, 51 deletions
Dockerfile
content/slides/cri/cri.html
+2
-2
2 additions, 2 deletions
content/slides/cri/cri.html
with
3 additions
and
54 deletions
.gitlab-ci.yml
+
1
−
1
View file @
05be26aa
image
:
ubuntu:xenial
image
:
docker.isima.fr/vimazeno/pelican_perso
cache
:
paths
:
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
deleted
100644 → 0
+
0
−
51
View file @
11242bb1
FROM
python:3.7-slim
AS
compile-image
ARG
DEBIAN_FRONTEND=noninteractive
RUN
{
\
echo
krb5-config krb5-config/default_realm string
'LOCAL.ISIMA.FR'
;
\
echo
tzdata tzdata/Areas string
'Etc'
;
\
echo
tzdata tzdata/Zones/Etc string
'UTC'
;
\
}
| debconf-set-selections
\
&&
\
apt-get update
&&
apt-get
install
-y
--no-install-recommends
\
build-essential
\
gcc
\
apt-utils
\
krb5-user
\
locales
\
rsync
\
&&
\
locale-gen fr_FR
\
locale-gen fr_FR.UTF-8
\
update-locale
LANG
=
fr_FR.UTF-8
\
.
/etc/default/locale
COPY
requirements.txt .
RUN
pip
install
--user
-r
requirements.txt
FROM
python:3.7-slim
AS
build-image
COPY
--from=compile-image /root/.local /root/.local
COPY
--from=compile-image /usr/bin /usr/bin
COPY
--from=compile-image /usr/lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu
LABEL
stage=builder
ENV
SRV_DIR=//srv
ENV
WORKING_DIR=//srv/pelican
ENV
PORT=8000
ENV
PATH=/root/.local/bin:$PATH
ADD
. $SRV_DIR
WORKDIR
$WORKING_DIR
RUN
mkdir
output content cache
VOLUME
["$WORKING_DIR/"]
# make python server in foreground
RUN
sed
-i
's/\$port &/\$port/g'
$SRV_DIR
/develop_server.sh
RUN
chmod
+x
$SRV_DIR
/develop_server.sh
EXPOSE
$PORT
ENTRYPOINT
$SRV_DIR/develop_server.sh start $PORT
This diff is collapsed.
Click to expand it.
content/slides/cri/cri.html
+
2
−
2
View file @
05be26aa
...
...
@@ -4,7 +4,7 @@
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
>
<title>
ZZ1
</title>
<title>
CRI INP / ISIMA / LIMOS
</title>
<link
rel=
"stylesheet"
href=
"../../node_modules/reveal.js/css/reveal.css"
>
<link
rel=
"stylesheet"
href=
"../../node_modules/reveal.js/css/theme/white.css"
>
...
...
@@ -26,7 +26,7 @@
<body>
<div
class=
"reveal"
>
<div
class=
"slides"
>
<section
data-markdown=
"md/
zz1
.md"
<section
data-markdown=
"md/
cri
.md"
data-separator=
"^\n\n\n"
data-separator-vertical=
"^\n\n"
data-separator-notes=
"^Note:"
...
...
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