From 10df151525eaf9cc73b6df27c1f2ead9158e6ff0 Mon Sep 17 00:00:00 2001 From: Icereed Date: Sat, 26 Oct 2024 15:21:13 +0200 Subject: [PATCH] Fix prompts mount (#30) Fixes #27 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4b81ec..c34c5c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,13 +42,13 @@ FROM alpine:latest RUN apk --no-cache add ca-certificates # Set the working directory inside the container -WORKDIR /root/ +WORKDIR /app/ # Copy the Go binary from the builder stage COPY --from=builder /app/paperless-gpt . # Copy the frontend build -COPY --from=frontend /app/dist /root/web-app/dist +COPY --from=frontend /app/dist /app/web-app/dist # Expose the port the app runs on EXPOSE 8080