Fixed media upload
Build and Publish / Build and Publish Docker Image (push) Successful in 1m39s

This commit is contained in:
ab
2026-07-11 15:20:21 +03:00
parent 1bd3e17672
commit 1bee7a7940
10 changed files with 146 additions and 36 deletions
+1
View File
@@ -9,6 +9,7 @@ RUN cargo build --release
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
WORKDIR /data
ENV WEB_PETTING_UPLOAD_DIR=/data/uploads
COPY --from=builder /app/target/release/web-petting /usr/local/bin/web-petting
COPY static /app/static
EXPOSE 3000