# Use an official Python runtime as a parent image FROM python:3.8-alpine3.18 as builder RUN apk update && apk upgrade RUN apk add --no-cache --virtual .build-deps build-base git RUN apk add bash libffi-dev tzdata --upgrade --no-cache ENV TZ America/New_York # Set the working directory in the container to /app WORKDIR /app # Copy the current directory contents into the container at /app COPY app.py /app COPY requirements.txt /app COPY models.py /app COPY init_db.py /app/init_db.py # Install any needed packages specified in requirements.txt RUN pip install --no-cache-dir -r requirements.txt RUN python /app/init_db.py RUN apk del .build-deps # ---- Production Stage ---- FROM python:3.8-alpine3.18 as production # Create a user to run our application RUN adduser -D myuser # Copy the dependencies and installed packages from the builder image WORKDIR /app COPY --from=builder /app /app COPY --from=builder /usr/local /usr/local # Switch to the created user USER myuser # Start gunicorn with the appropriate options CMD ["gunicorn", "-b", "0.0.0.0:5000", "--workers=3", "app:app"]