aboutsummaryrefslogtreecommitdiff
path: root/docker/blog-quentin
diff options
context:
space:
mode:
authorQuentin <quentin@deuxfleurs.fr>2019-06-01 16:02:49 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2019-07-11 09:33:07 +0200
commit61d009f18d5886db8b22ae41e04bb41a4ba2fddb (patch)
treee44bb326caf3107653c7a48749527cfd77f02cf2 /docker/blog-quentin
downloadinfrastructure-61d009f18d5886db8b22ae41e04bb41a4ba2fddb.tar.gz
infrastructure-61d009f18d5886db8b22ae41e04bb41a4ba2fddb.zip
Initial commit
Diffstat (limited to 'docker/blog-quentin')
-rwxr-xr-xdocker/blog-quentin/.dockerenv0
-rw-r--r--docker/blog-quentin/Dockerfile16
-rw-r--r--docker/blog-quentin/README.md1
3 files changed, 17 insertions, 0 deletions
diff --git a/docker/blog-quentin/.dockerenv b/docker/blog-quentin/.dockerenv
new file mode 100755
index 0000000..e69de29
--- /dev/null
+++ b/docker/blog-quentin/.dockerenv
diff --git a/docker/blog-quentin/Dockerfile b/docker/blog-quentin/Dockerfile
new file mode 100644
index 0000000..61f5c40
--- /dev/null
+++ b/docker/blog-quentin/Dockerfile
@@ -0,0 +1,16 @@
+FROM amd64/debian:stretch as builder
+
+COPY ./quentin.dufour.io/Gemfile /root/quentin.dufour.io/Gemfile
+
+WORKDIR /root/quentin.dufour.io
+
+RUN apt-get update && \
+ apt-get install -y ruby-dev gem build-essential bundler zlib1g-dev libxml2-dev && \
+ bundle install
+
+COPY ./quentin.dufour.io/ /root/quentin.dufour.io/
+RUN bundle exec jekyll build
+
+FROM superboum/amd64_webserver:v2
+COPY --from=builder /root/quentin.dufour.io/_site /srv/http
+
diff --git a/docker/blog-quentin/README.md b/docker/blog-quentin/README.md
new file mode 100644
index 0000000..7e1bb53
--- /dev/null
+++ b/docker/blog-quentin/README.md
@@ -0,0 +1 @@
+sudo docker build -t superboum/amd64_blog:v18 .