Skip to content
Dockerfile 252 B
Newer Older
Sonia Zorba's avatar
Sonia Zorba committed
FROM python:3.9-buster

COPY requirements.txt ./

RUN pip install -r requirements.txt --extra-index-url https://www.ict.inaf.it/gitlab/api/v4/projects/670/packages/pypi/simple

COPY server.py index.html script.js ./

ENTRYPOINT ["python", "server.py"]