This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
jarvis-server/Dockerfile
2021-10-10 13:41:09 +02:00

19 lines
470 B
Docker

# THIS IS ONLY A TEST, NOT READY FOR PRODUCTION
FROM ubuntu:21.04
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /jarvis-server
RUN apt update && apt upgrade -y
RUN apt install python3.9 python3-pip python3.9-dev python3.9-distutils python3-fann2 libfann-dev swig git python3-levenshtein -y
RUN git clone --progress --verbose https://github.com/M4TH1EU/jarvis-server.git .
RUN python3 -m pip install -r requirements.txt
EXPOSE 5000
ENTRYPOINT ["python3", "run.py"]