Initial commit: Flask ASCII art generator
This commit is contained in:
+15
@@ -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"]
|
||||
Reference in New Issue
Block a user