diff --git a/docker-compose.yml b/docker-compose.yml index 6450a10f..3f8259d4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,6 +22,7 @@ services: branch: portal-latest container_name: sia restart: unless-stopped + stop_grace_period: 5m logging: *default-logging environment: - SIA_MODULES=gctwra diff --git a/packages/health-check/Dockerfile b/packages/health-check/Dockerfile index f21394dc..a7661da5 100644 --- a/packages/health-check/Dockerfile +++ b/packages/health-check/Dockerfile @@ -1,6 +1,6 @@ FROM node:16.14.2-alpine -RUN apk add --no-cache dnsmasq=2.86-r1 +RUN apk add --no-cache dnsmasq~=2 WORKDIR /usr/app diff --git a/packages/website/Dockerfile b/packages/website/Dockerfile index 39b17d37..fc382140 100644 --- a/packages/website/Dockerfile +++ b/packages/website/Dockerfile @@ -34,4 +34,4 @@ COPY --from=builder /usr/app/public /usr/app/public EXPOSE 9000 -CMD ["http-server", "/usr/app/public", "-s -p 9000"] +CMD ["http-server", "/usr/app/public", "-s", "-p 9000"]