|
|
@@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y \ |
|
|
|
netcat \ |
|
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
ADD requirements.txt /backend/ |
|
|
|
RUN pip install --upgrade pip |
|
|
|
RUN pip install -r requirements.txt |
|
|
|
ADD . /backend/ |
|
|
|
|
|
|
@@ -15,4 +16,4 @@ RUN chmod 755 /entrypoint.sh |
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |
|
|
|
|
|
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf |
|
|
|
CMD ["/usr/bin/supervisord"] |
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] |