Rename production.Dockerfile to development.Dockerfile.

It was a late night, ok? Updated README.md to include removal of DB from repo.
This commit is contained in:
Steve Dogiakos
2025-04-02 08:08:36 -06:00
parent dba4c21a5e
commit 86529e0728
2 changed files with 2 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.9-slim
WORKDIR /app
# Copy and install Python dependencies.
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the app code.
COPY . .
EXPOSE 5000
CMD ["python", "app.py"]