TFAI / deploy /Dockerfile
ZyphrZero
Update Dockerfile
e881971
Raw
History Blame
178 Bytes
FROM fast.p0.ee/python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
EXPOSE 8080
CMD ["python", "main.py"]