update dockerfile for webdav

This commit is contained in:
2025-12-15 12:49:30 +00:00
parent f38c1715fc
commit 3f4824fae9
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ RUN addgroup -g 1000 -S appgroup && \
WORKDIR /app WORKDIR /app
# Copy binary from builder stage # Copy binary from builder stage
COPY --from=builder /app/meshi /app/plan.xlsx . COPY --from=builder /app/meshi .
RUN mkdir assets RUN mkdir assets
COPY --from=builder /app/assets ./assets COPY --from=builder /app/assets ./assets

View File

@@ -14,7 +14,7 @@ type Plan = [7][3]struct {
} }
func Load() (Plan, error) { func Load() (Plan, error) {
f, err := excelize.OpenFile("./plan.xlsx") f, err := excelize.OpenFile("./data/plan.xlsx")
defer func() { defer func() {
err := f.Close() err := f.Close()
if err != nil { if err != nil {