From 1142740c8b5e9bdb3d67d015a58d46f49dfabc0e Mon Sep 17 00:00:00 2001 From: Julen Landa Alustiza Date: Mar 10 2019 07:21:36 +0000 Subject: dev/containers/worker: fix python executable link --- diff --git a/dev/containers/worker b/dev/containers/worker index c6d6ee7..d54c1f6 100644 --- a/dev/containers/worker +++ b/dev/containers/worker @@ -17,6 +17,8 @@ RUN dnf install -y python3-devel python3-setuptools python3-nose python3-bcrypt RUN dnf install -y python3-celery +RUN ln -sf /usr/bin/python3 /usr/bin/python + WORKDIR /code ENTRYPOINT ["/usr/bin/celery-3", "-A", "pagure.lib.tasks", "worker", "--loglevel", "info"]