Fix prompts mount

Fixes #27
This commit is contained in:
Dominik Schröter 2024-10-26 15:14:57 +02:00
parent e62c5442f5
commit 4f3f670f95

View file

@ -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