plane-notify/Dockerfile

17 lines
232 B
Docker

FROM python:3
WORKDIR /plane
COPY . .
# Add pipenv
RUN pip install pipenv
# Install dependencies
RUN pipenv install
# Added needed folder for plane-notify process
RUN mkdir /var/run/plane-notify
CMD pipenv run python __main__