14 lines
217 B
Docker
14 lines
217 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir --default-timeout=120 --retries 5 -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENV LEADGEN_PORT=3003
|
|
EXPOSE 3003
|
|
|
|
CMD ["python", "app.py"]
|