Saving files

This commit is contained in:
2026-08-04 11:08:30 -04:00
parent 140b9dba45
commit b583ff8ef1
6 changed files with 117 additions and 9 deletions
+19
View File
@@ -0,0 +1,19 @@
# Use a base image with a shell (Alpine)
FROM alpine:latest
# Install necessary tools
RUN apk add --no-cache curl
# Copy the Garage binary from the official image
COPY --from=dxflrs/garage:v2.3.0 /garage /usr/local/bin/garage
# Copy the entrypoint script
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Set the entrypoint
ENTRYPOINT ["/entrypoint.sh"]
# Pass through any arguments to Garage
CMD []
View File