funapi / Dockerfile
woolbot's picture
please work
1476d53
raw
history blame
217 Bytes
FROM tensorflow/tensorflow:latest
COPY . /app
RUN chmod -R 777 /app
WORKDIR /app
RUN apt update && apt install ffmpeg -y
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
CMD ["python", "app.py"]