Raymond Bernardo
4 years ago
3 changed files with 35 additions and 1 deletions
@ -0,0 +1,16 @@
|
||||
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__ |
Loading…
Reference in new issue