add new endpoints for app v2 #116

Merged
edenhaus merged 17 commits from ecovacs-home into master 2021-06-05 15:06:19 +02:00
Showing only changes of commit f050213113 - Show all commits

View file

@ -22,11 +22,13 @@ RUN apk add build-base
FROM base FROM base
COPY . /bumper COPY requirements.txt /requirements.txt
WORKDIR /bumper
# install required python packages # install required python packages
RUN pip3 install -r requirements.txt RUN pip3 install -r requirements.txt
COPY . /bumper
WORKDIR /bumper
ENTRYPOINT ["python3", "-m", "bumper"] ENTRYPOINT ["python3", "-m", "bumper"]