Skip to content

Commit

Permalink
use the correct dockerfile and version
Browse files Browse the repository at this point in the history
  • Loading branch information
pschichtel committed Sep 15, 2024
1 parent 107e227 commit 689e2ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
tag="${GITHUB_REF##*/}"
if [ "$tag" = 'main' ]; then tag='latest'; fi
image_name="ghcr.io/docspell/joex:${tag}"
docker build --cache-from type=gha --cache-to type=gha,mode=max -t "$image_name" .
docker build --cache-from type=gha --cache-to type=gha,mode=max -t "$image_name" -f Dockerfile.joex .
docker push "$image_name"
2 changes: 1 addition & 1 deletion Dockerfile.joex
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN apt install -y \

WORKDIR /opt

ARG DOCSPELL_VERSION
ARG DOCSPELL_VERSION=0.42.0

RUN curl -sLfo joex.zip "https://github.com/eikek/docspell/releases/download/v${DOCSPELL_VERSION}/docspell-joex-${DOCSPELL_VERSION}.zip" && \
unzip joex.zip && \
Expand Down

0 comments on commit 689e2ac

Please sign in to comment.