Fix prompts mount (#30)

Fixes #27
This commit is contained in:
Icereed 2024-10-26 15:21:13 +02:00 committed by GitHub
parent e62c5442f5
commit 10df151525
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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