13 lines
304 B
Docker
13 lines
304 B
Docker
FROM python:3.6.8-stretch
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --upgrade watson-machine-learning-client ibm-ai-openscale Minio --no-cache | tail -n 1
|
|
RUN pip install psycopg2-binary | tail -n 1
|
|
|
|
ENV APP_HOME /app
|
|
COPY src $APP_HOME
|
|
WORKDIR $APP_HOME
|
|
|
|
ENTRYPOINT ["python"]
|
|
CMD ["subscribe.py"]
|