Skip to content

Commit

Permalink
new fitnessctl utility
Browse files Browse the repository at this point in the history
  • Loading branch information
fonhorst committed Dec 18, 2023
1 parent ac3a323 commit f5d660e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions cluster/bin/fitnessctl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ function build_app() {
function build_images(){
echo "Building images..."

build_app

docker build -f "${docker_files_dir}/mlflow-webserver.dockerfile" -t ${mlflow_image} .
docker build -f "${docker_files_dir}/flower.dockerfile" -t ${flower_image} .
docker build -f "${docker_files_dir}/worker.dockerfile" -t ${fitness_worker_image} .
Expand Down
2 changes: 1 addition & 1 deletion cluster/docker/worker.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN pip3 install -r /tmp/requirements.txt

COPY dist/autotm-0.1.0-py3-none-any.whl /tmp

RUN pip3 install /tmp/autotm-0.1.0-py3-none-any.whl
RUN pip3 install --no-deps /tmp/autotm-0.1.0-py3-none-any.whl

ENTRYPOINT fitness-worker \
--concurrency 1 \
Expand Down

0 comments on commit f5d660e

Please sign in to comment.