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 babbc43806
commit 35ac31be7f
2 changed files with 2 additions and 3 deletions

14
development.Dockerfile Normal file
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"]