diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index 18b5b54ff..baee7a851 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -50,6 +50,7 @@ jobs: # Files are packed into the base directory cp *.tgz packages/server/ cp *.tgz packages/cli/ + cp -r packages/lambda-tiler/static/ packages/server/ cp -r packages/lambda-tiler/static/ packages/cli/ - name: Log in to registry diff --git a/packages/server/Dockerfile b/packages/server/Dockerfile index 97bf4cb9c..58eca0177 100644 --- a/packages/server/Dockerfile +++ b/packages/server/Dockerfile @@ -12,6 +12,9 @@ WORKDIR /app/basemaps COPY ./basemaps-landing*.tgz /app/basemaps/ COPY ./basemaps-server*.tgz /app/basemaps/ +# Copy the static files for v1/health check +COPY ./static/ /app/static/ + RUN npm install ./basemaps-landing*.tgz RUN npm install ./basemaps-server*.tgz