-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
63 lines (49 loc) · 1.39 KB
/
Dockerfile
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
63
#######################
## Dockerfile multi-staged, pour être utilisé à la fois par la CI/CD et par le PaaS de PROD.
## En CI/CD on veut simplement déclencher le `build` pour vérifier la validité du code
## Sur le PaaS, on veut aller jusqu'à démarrer un serveur web pour servir le site statique.
##
####
## BUILD
###
FROM ruby:3.3.5-alpine3.20 AS build-le-site
ENV SETUPDIR=/setup
WORKDIR ${SETUPDIR}
ARG GEMFILE_DIR=.
COPY $GEMFILE_DIR/Gemfile* $GEMFILE_DIR/packages* ./
# Dépendances de build
RUN set -eux; \
apk add --no-cache --virtual build-deps build-base zlib-dev ;
# Le bundler
RUN set -eux; gem install bundler
# Les packages "extra" s'il y en a
RUN set -eux; \
if [ -e packages ]; then \
cat packages | apk add --no-cache --virtual extra-pkgs; \
fi
# Les Gems du Gemfile
RUN set -eux; bundler install
# Suppression des dépendances de dev
RUN set -eux; apk del --no-cache build-deps
# Nettoyage
WORKDIR /srv/jekyll
RUN set -eux; \
rm -rf \
${SETUPDIR} \
/usr/gem/cache \
/root/.bundle/cache \
;
# Installation de node
RUN apk update && apk add nodejs npm
ADD . /srv/jekyll
# Build du catalogue
WORKDIR /srv/jekyll/lib-catalogue
RUN npm install && npm run build
# Build du site
WORKDIR /srv/jekyll
RUN set -eux; bundler exec jekyll build
####
## SERVEUR WEB
####
FROM nginx:1.27.2
COPY --from=build-le-site /srv/jekyll/_site /usr/share/nginx/html