blob: 4583390f3ce1475a13da8cd5c14bd3c2083b14dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM nginx:alpine
# /cstate will be our volume & building directory
WORKDIR /cstate
# Install hugo & git
RUN apk add --no-cache hugo git
# Download the example site
COPY exampleSite /cstate
# Copy files from this repo into themes/cstate
RUN mkdir -p /cstate/themes/cstate
COPY . /cstate/themes/cstate
# Copy entrypoint script into the container image, this runs everytime the container cold-starts.
COPY ./docker/entrypoint.sh /docker-entrypoint.d/10-build-hugo.sh
|