From e4af0ae15dddd820850c7cb7977f7b6c142ad51d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Thu, 12 Jun 2025 09:33:16 +0200 Subject: [PATCH] fix(2-3599): docker compose file should use default command from the image (#10124) Also remove the version which is deprecated Fixes #10122 --- Dockerfile | 2 +- docker-compose.yml | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ddd25b9745..6a9f1867d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_VERSION=22.15.0-alpine3.21 +ARG NODE_VERSION=22.15.1-alpine3.21 FROM node:$NODE_VERSION AS builder diff --git a/docker-compose.yml b/docker-compose.yml index dd67e945b4..708ca05222 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,7 +11,6 @@ # This is intended to be used for demo, development, and learning # purposes only. -version: "3.9" services: # The Unleash server contains the Unleash configuration and @@ -33,7 +32,6 @@ services: depends_on: db: condition: service_healthy - command: [ "node", "index.js" ] healthcheck: test: wget --no-verbose --tries=1 --spider http://localhost:4242/health || exit 1 interval: 1s