Fix bug in docker files
This commit is contained in:
parent
62a30a0390
commit
740a6107a8
|
@ -1,6 +1,6 @@
|
|||
FROM python:3
|
||||
|
||||
WORKDIR /plane
|
||||
WORKDIR /plane-notify
|
||||
|
||||
COPY . .
|
||||
|
||||
|
@ -13,4 +13,4 @@ RUN pipenv install
|
|||
# Added needed folder for plane-notify process
|
||||
RUN mkdir /var/run/plane-notify
|
||||
|
||||
CMD pipenv run python __main__
|
||||
CMD pipenv run python /plane-notify/__main__.py
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
version: "3.9"
|
||||
services:
|
||||
plane-notify:
|
||||
command: sh -c "sleep 500"
|
||||
build:
|
||||
context: .
|
||||
volumes:
|
||||
- ./:/plane
|
||||
- ./:/plane-notify
|
||||
|
|
Loading…
Reference in New Issue