spreet 0.13.1

Create a spritesheet from a set of SVG images
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM rust:latest AS build
WORKDIR /app
COPY ./ ./
RUN cargo build --release

# Create a new stage for the final image
FROM debian:latest
WORKDIR /app
# Copy the binary from the build stage
COPY --from=build /app/target/release/spreet ./
ENTRYPOINT ["./spreet"]