Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/klakegg/docker-hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
klakegg authored Oct 3, 2022
2 parents e45bed5 + 11ff366 commit 95b4280
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
path: target

- name: Test Docsy
continue-on-error: true
run: make test-docsy

- name: Test DocuAPI
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ In docker-compose using `entrypoint`:
| Software | Version |
| -------- | ------- |
| Go | 1.16.2 |
| NodeJS | 16.x |
| NodeJS | 18.x |
| Pandoc | 2.12 |
| Yarn | 1.22.10 |

Expand Down
5 changes: 4 additions & 1 deletion src/docker/alpine-ext/ext-alpine.df
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ RUN true \
#
# Prepare folders
&& mkdir -p /src /target \
&& chmod a+w /src /target
&& chmod a+w /src /target \
#
# add /src to safe.directory
&& git config --global --add safe.directory /src

EXPOSE 1313

Expand Down
5 changes: 4 additions & 1 deletion src/docker/debian-ext/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ RUN true \
&& rm -rf /var/lib/apt/lists/* \
&& find /tmp -mindepth 1 -maxdepth 1 | xargs rm -rf \
&& mkdir -p /src /target \
&& chmod a+w /src /target
&& chmod a+w /src /target \
#
# add /src to safe.directory
&& git config --global --add safe.directory /src

COPY --from=base--golang / /

Expand Down
5 changes: 4 additions & 1 deletion src/docker/ubuntu-ext/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ RUN true \
&& rm -rf /var/lib/apt/lists/* \
&& find /tmp -mindepth 1 -maxdepth 1 | xargs rm -rf \
&& mkdir -p /src /target \
&& chmod a+w /src /target
&& chmod a+w /src /target \
#
# add /src to safe.directory
&& git config --global --add safe.directory /src

COPY --from=base--golang / /

Expand Down

0 comments on commit 95b4280

Please sign in to comment.