9 lines
145 B
Docker
9 lines
145 B
Docker
FROM ubuntu
|
|
|
|
RUN apt update -y && apt install -y supervisor
|
|
|
|
COPY supervisor /etc/supervisor
|
|
COPY scripts /scripts
|
|
|
|
CMD ["/usr/bin/supervisord"]
|