blob: a4c57e81127cd85d9556358fbafefefdc6c95107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM alpine
MAINTAINER Your Name "your@name.com"
RUN apk update
RUN apk add ruby ruby-dev libffi-dev build-base git
RUN gem install jekyll json --no-doc --no-ri
RUN git clone --single-branch --depth 1 https://github.com/kauha/uudempiAS.git \
/data/site-git
VOLUME ["/usr/share/nginx/html"]
CMD ["jekyll", "build", "--source=/data/site-git", "--destination=/usr/share/nginx/html"]
|