# syntax=docker/dockerfile:1 # This Dockerfile builds a docker image containing all dependecies to run # a development version of the lumi application. FROM python:3 # Install dependencies WORKDIR /app COPY requirements.txt /app/ COPY lumi2 /app/lumi2/ COPY tests /app/tests/ COPY pytest.ini /app/ RUN pip install -r requirements.txt ENTRYPOINT ["waitress-serve", "--listen=0.0.0.0:80", "--no-ipv6", "--call", "lumi2:create_app"]