Can build Docker image

This commit is contained in:
Pierre HUBERT 2021-10-24 15:08:37 +02:00
parent 9cc05faa9b
commit f7fe10c8c2
2 changed files with 11 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM halverneus/static-file-server:latest
LABEL org.opencontainers.image.description "About Comunic static website"
ENV PORT=80
COPY _site /web

6
build_docker.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
echo Build website
jekyll build
echo Build Docker image
docker build . -t pierre42100/comunic_about