diff options
author | Mantas Vilčinskas <hi@mnts.lt> | 2023-02-25 14:41:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-25 14:41:38 +0200 |
commit | 341d731293ca0b3365005423afe7b98f6e0efca8 (patch) | |
tree | 0de8358de65cc4fc8be99ce1f788fbb8c47f77a2 /Dockerfile | |
parent | 7f4af4f04bfef8adf1edb10d8c02e1855804cd20 (diff) | |
parent | 2a82b393675bed26630a40c04e9d66e195b14ceb (diff) |
Docker bugfix - Merge pull request #261 from rophy/fix-docker-git-error
Fix hugo fails to run for docker build
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ WORKDIR /cstate RUN apk add --no-cache hugo git # Download the example site -RUN git clone -b master --depth=1 https://github.com/cstate/example /cstate +COPY exampleSite /cstate # Copy files from this repo into themes/cstate RUN mkdir -p /cstate/themes/cstate |