Working final dockerfile using Ubuntu

This commit is contained in:
Mathieu 2021-10-12 21:23:17 +02:00
parent 4db304de42
commit 7508a4e283

View File

@ -1,19 +1,25 @@
# THIS IS ONLY A TEST, NOT READY FOR PRODUCTION
FROM ubuntu:21.04
ENV DEBIAN_FRONTEND=noninteractive
ENV ENV_STATUS=${NODE_ENV:-production}
WORKDIR /jarvis-server
# For suport set local time zone.
RUN apt-get update -y && apt-get upgrade -y
RUN apt update && apt upgrade -y
WORKDIR /jarvis
RUN apt install python3.9 python3-pip python3.9-dev python3.9-distutils python3-fann2 libfann-dev swig git python3-levenshtein -y
RUN apt install python3.9 python3-pip python3.9-dev python3.9-distutils python3-fann2 libfann-dev swig git python3-levenshtein curl -y
RUN git clone --progress --verbose https://github.com/M4TH1EU/jarvis-server.git .
RUN git clone --branch $(curl --silent "https://api.github.com/repos/m4th1eu/jarvis-server/releases/latest" | grep -Po '"tag_name": "\K.*?(?=")') --progress --verbose https://github.com/M4TH1EU/jarvis-server.git .
RUN python3 -m pip install -r requirements.txt
RUN apt-get clean -y
EXPOSE 5000
ENTRYPOINT ["python3", "run.py"]
COPY start.sh /jarvis/
RUN chmod +x start.sh
CMD "./start.sh"