samples/twitter-sentiment-processor/demos/py-demo/processor/Dockerfile

9 lines
131 B
Docker

FROM python:3.7-slim-buster
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT ["python"]
CMD ["processor.py"]