38 lines
1.2 KiB
Docker
38 lines
1.2 KiB
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /
|
|
|
|
# Install system dependencies and Poetry
|
|
RUN apt-get update && apt-get install -y --no-install-recommends gcc && rm -rf /var/lib/apt/lists/* && pip install --no-cache-dir poetry
|
|
|
|
# Copy Poetry configuration
|
|
COPY /BankServices/RoutineEmailService/pyproject.toml ./pyproject.toml
|
|
|
|
# Configure Poetry and install dependencies with optimizations
|
|
RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi --no-root --only main && pip cache purge && rm -rf ~/.cache/pypoetry
|
|
|
|
# Install cron for scheduling tasks
|
|
RUN apt-get update && apt-get install -y cron
|
|
|
|
# Copy application code
|
|
COPY /BankServices/RoutineEmailService /
|
|
|
|
# Make run_app.sh executable
|
|
RUN chmod +x /run_app.sh
|
|
|
|
COPY /Schemas /Schemas
|
|
COPY /Controllers /Controllers
|
|
COPY /BankServices/ServiceDepends /
|
|
|
|
# Set Python path to include app directory
|
|
ENV PYTHONPATH=/ PYTHONUNBUFFERED=1 PYTHONDONTWRITEBYTECODE=1
|
|
|
|
# Create log file to grab cron logs
|
|
RUN touch /var/log/cron.log
|
|
|
|
# Make entrypoint script executable
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
# Use entrypoint script to update run_app.sh with environment variables and start cron
|
|
ENTRYPOINT ["/entrypoint.sh"]
|