welcomecenterbot/Dockerfile

18 lines
410 B
Docker
Raw Permalink Normal View History

2024-09-27 06:48:15 +00:00
# Use a single stage
FROM python:slim
2024-01-06 11:25:35 +00:00
2023-09-11 20:04:53 +00:00
WORKDIR /app
2024-01-06 11:25:35 +00:00
2024-02-12 12:50:35 +00:00
COPY requirements.txt .
2024-01-06 11:25:35 +00:00
2024-09-27 06:32:25 +00:00
# Install system dependencies required for building Python packages
2024-09-28 09:06:24 +00:00
RUN apt-get update && apt-get install -y --no-install-recommends wget gcc libffi-dev libssl-dev
2024-09-27 06:32:25 +00:00
# Install Python dependencies including redis with hiredis support
2024-09-27 05:44:13 +00:00
RUN pip install --no-cache-dir -r requirements.txt
2024-09-26 20:58:11 +00:00
2024-02-12 12:50:35 +00:00
COPY . .
EXPOSE 8080
2024-09-26 20:58:11 +00:00
CMD ["python", "main.py"]