Initial commit: Flask ASCII art generator

This commit is contained in:
Ricardo Mancinas
2026-07-11 18:50:46 -07:00
commit 4c69ae1529
2 changed files with 220 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.11-slim
WORKDIR /app
# Install Flask
RUN pip install --no-cache-dir flask
# Copy the app
COPY app.py .
# Expose port
EXPOSE 5000
# Run the app
CMD ["python", "app.py"]