init v0.1.0
This commit is contained in:
commit
017b6445f4
14 changed files with 555 additions and 0 deletions
19
Dockerfile
Normal file
19
Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue