Delete Dockerfile

This commit is contained in:
Tyler
2026-04-20 00:51:45 -04:00
committed by GitHub
parent 3a44f6a2bd
commit 179be48bfe
-31
View File
@@ -1,31 +0,0 @@
# Base image
FROM python:3.11-slim
# Environment vars
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PRODUCTION=true
# Working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && \
apt-get install -y git && \
rm -rf /var/lib/apt/lists/*
# Copy dependency file
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy entire app
COPY . .
# Ensure uploads folder exists
RUN mkdir -p uploads
# Expose the port Flask uses
EXPOSE 5000
# Start the app
CMD ["python", "app.py"]