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.
16 lines
319 B
16 lines
319 B
FROM python:3.8
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
|
|
RUN wget http://fr.archive.ubuntu.com/ubuntu/pool/universe/p/python-stdlib-extensions/python-tk_2.7.18-1_amd64.deb
|
|
|
|
RUN pip install django sickit-learn pandas numpy pillow
|
|
|
|
COPY . /app
|
|
|
|
EXPOSE 8000
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["python3", "manage.py", "runserver", "0.0.0.0:8000"] |