Hackathon / Dockerfile
SameerArz's picture
Update Dockerfile
d1055a8 verified
raw
history blame contribute delete
315 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN apt-get update && apt-get install -y \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 7860
ENV GROQ_API_KEY=""
ENV HTTP_PROXY=""
ENV HTTPS_PROXY=""
CMD ["python", "app.py"]