34 lines
806 B
Docker
34 lines
806 B
Docker
FROM python:3.11-slim
|
|
|
|
# Install build deps and netcat for the DB-wait
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
default-libmysqlclient-dev \
|
|
pkg-config \
|
|
netcat-openbsd \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Upgrade pip and install Python requirements
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --upgrade pip \
|
|
&& pip install -r requirements.txt
|
|
|
|
# Copy the app code
|
|
COPY . .
|
|
|
|
# Create a non-root user and give it ownership of /app
|
|
RUN useradd -ms /bin/bash appuser \
|
|
&& chown -R appuser:appuser /app
|
|
|
|
# Switch to appuser for all subsequent commands
|
|
USER appuser
|
|
|
|
# Make the entrypoint script executable
|
|
COPY --chown=appuser:appuser entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["flask", "run", "--host=0.0.0.0"]
|