first commit

This commit is contained in:
2024-02-18 01:54:33 -05:00
commit 2fe91bd826
8 changed files with 727 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
# Use an official Python runtime as a parent image
FROM python:3.9-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Set the working directory in the container
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install any needed dependencies specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Expose the Flask port
EXPOSE 5000
# Copy static files and templates
COPY ./templates /app/templates
COPY ./static /app/static
# Run the Flask application
CMD ["python", "app.py"]