Mirror of https://github.com/Jxck-S/plane-notify This is the backend to ElonsJet and other bots
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
267 B

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