EmailMaestro / Dockerfile
Flickinshots's picture
Deploy Project Epsilon Space bundle
38c9982 verified
raw
history blame contribute delete
224 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
COPY requirements.app.txt .
RUN pip install --no-cache-dir -r requirements.app.txt
COPY . .
EXPOSE 7860
ENV GRADIO_SERVER_NAME=0.0.0.0
CMD ["python", "app.py"]