diff --git a/extras/docker/production/Dockerfile b/extras/docker/production/Dockerfile index 213e1702d..bb151ab57 100644 --- a/extras/docker/production/Dockerfile +++ b/extras/docker/production/Dockerfile @@ -64,9 +64,9 @@ COPY --from=builder --chown=wger:wger /home/wger/src/wger/core/static/yarn /home COPY ${DOCKER_DIR}/settings.py /home/wger/src COPY ${DOCKER_DIR}/settings.py /tmp/ COPY ${DOCKER_DIR}/entrypoint.sh /home/wger/entrypoint.sh -COPY ${DOCKER_DIR}/celery/beat/start /start-beat -COPY ${DOCKER_DIR}/celery/worker/start /start-worker -COPY ${DOCKER_DIR}/celery/flower/start /start-flower +COPY ${DOCKER_DIR}/celery/start-beat /start-beat +COPY ${DOCKER_DIR}/celery/start-worker /start-worker +COPY ${DOCKER_DIR}/celery/start-flower /start-flower RUN chmod +x /home/wger/entrypoint.sh \ && chmod +x /start-beat \ && chmod +x /start-worker \ diff --git a/extras/docker/production/celery/beat/start b/extras/docker/production/celery/start-beat similarity index 100% rename from extras/docker/production/celery/beat/start rename to extras/docker/production/celery/start-beat diff --git a/extras/docker/production/celery/flower/start b/extras/docker/production/celery/start-flower similarity index 100% rename from extras/docker/production/celery/flower/start rename to extras/docker/production/celery/start-flower diff --git a/extras/docker/production/celery/worker/start b/extras/docker/production/celery/start-worker similarity index 100% rename from extras/docker/production/celery/worker/start rename to extras/docker/production/celery/start-worker