4
0
Fork 0
This repository has been archived on 2020-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
extractor-service/Dockerfile

13 lines
338 B
Docker
Raw Permalink Normal View History

2020-05-06 12:52:24 +02:00
FROM registry.kmlabz.com/birbnetes/ai-base-image
2020-03-09 18:53:34 +01:00
2020-03-30 01:26:45 +02:00
ADD extractor_service requirements.txt /extractor_service/
WORKDIR /extractor_service/
2020-03-09 18:53:34 +01:00
2020-03-30 01:26:45 +02:00
ENV PIP_NO_CACHE_DIR=true
2020-03-09 18:53:34 +01:00
ENV TZ Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
2020-05-06 13:31:06 +02:00
RUN pip3 install -r requirements.txt
2020-03-09 18:53:34 +01:00
2020-03-30 01:26:45 +02:00
ENTRYPOINT ["python3","main.py"]