mirror of
https://github.com/icereed/paperless-gpt.git
synced 2025-03-12 21:08:00 -05:00
fix docker image and gh actions
This commit is contained in:
parent
f65241fc8b
commit
746a538074
2 changed files with 4 additions and 1 deletions
3
.github/workflows/docker-build-and-push.yml
vendored
3
.github/workflows/docker-build-and-push.yml
vendored
|
@ -24,6 +24,9 @@ jobs:
|
|||
with:
|
||||
go-version: 1.22
|
||||
|
||||
- name: Install mupdf
|
||||
run: sudo apt-get install -y mupdf
|
||||
|
||||
- name: Install dependencies
|
||||
run: go mod download
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ RUN npm run build
|
|||
FROM alpine:latest
|
||||
|
||||
# Install necessary CA certificates
|
||||
RUN apk --no-cache add ca-certificates
|
||||
RUN apk --no-cache add ca-certificates mupdf-dev
|
||||
|
||||
# Set the working directory inside the container
|
||||
WORKDIR /app/
|
||||
|
|
Loading…
Reference in a new issue