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"]