aibot / Dockerfile
NextDrought's picture
using fastapi
e9327ec
raw
history blame contribute delete
No virus
226 Bytes
FROM python:3.10.8-slim
LABEL description="Sentiment classifier of tweets service"
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
COPY . /app/
EXPOSE 6000
CMD ["python", "app.py"]