init v0.1.0

This commit is contained in:
Caffeine Fueled 2025-10-02 19:53:03 +02:00
commit 017b6445f4
Signed by: cf7
GPG key ID: CA295D643074C68C
14 changed files with 555 additions and 0 deletions

19
Dockerfile Normal file
View file

@ -0,0 +1,19 @@
FROM docker.io/ubuntu:24.04
WORKDIR /app
# Copy project files
COPY build.sh /app/
COPY templates /app/templates
COPY assets /app/assets
# Create directories
RUN mkdir -p /app/images /app/output
# Make build script executable
RUN chmod +x /app/build.sh
# Set volumes for images and output
VOLUME ["/app/images", "/app/output"]
CMD ["./build.sh"]