-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (31 loc) · 898 Bytes
/
Dockerfile
File metadata and controls
39 lines (31 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM python:3.11-slim
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
g++ \
procps \
htop \
vim \
nano \
curl \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Create necessary directories with proper permissions
RUN mkdir -p logs charts reports configs && \
chmod 777 logs charts reports configs
# Set environment variables
ENV PYTHONPATH=/app
ENV LOG_DIR=/app/logs
ENV RABBITMQ_HOST=rabbitmq
# Create entrypoint script for flexibility
COPY docker-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
# Default to interactive bash, but allow override
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
CMD ["bash"]