You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM cstf2:latest
|
|
|
|
MAINTAINER "Gabriel Menessy" <gabriel.menessy@komm.one>
|
|
|
|
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
|
|
|
|
ENV TZ=Europe/Berlin
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
|
|
|
|
RUN dpkg-reconfigure -f noninteractive tzdata
|
|
|
|
#
|
|
|
|
ADD containercontent /
|
|
|
|
|
|
|
|
WORKDIR "/opt/chatbot_engine/"
|
|
|
|
RUN pip3 list
|
|
|
|
|
|
|
|
# Server
|
|
|
|
EXPOSE 8001
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
ENTRYPOINT ["python3", "manage.py"]
|
|
|
|
CMD ["runserver", "0.0.0.0:8001"]
|
|
|
|
|
|
|
|
|