classification / Dockerfile
Isaacgv's picture
add model
c66fb0b
raw
history blame contribute delete
342 Bytes
FROM python:3.8.13-bullseye
LABEL author="Bastien GUILLAUME"
LABEL version="0.0.2"
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install ffmpeg libsm6 libxext6 -y
COPY requirements.txt /opt/app/
WORKDIR /opt/app
RUN pip install -r requirements.txt
COPY inference.py /opt/app/
CMD ["python", "inference.py"]
EXPOSE 80