Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion containers/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# the one CI pushes. `openhands-app` is the plain app image the enterprise
# layers sit on; build it on its own with `--target openhands-app`.
ARG OPENHANDS_BUILD_VERSION=dev
FROM node:25.9-trixie-slim AS frontend-builder
FROM node:26.4-trixie-slim AS frontend-builder

WORKDIR /app

Expand Down Expand Up @@ -117,7 +117,7 @@

# Datadog labels
LABEL com.datadoghq.tags.service="deploy"
LABEL com.datadoghq.tags.env="${DD_ENV}"

Check warning on line 120 in containers/app/Dockerfile

View workflow job for this annotation

GitHub Actions / Enterprise / Build ghcr.io/openhands/enterprise-server (arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$DD_ENV' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 120 in containers/app/Dockerfile

View workflow job for this annotation

GitHub Actions / Enterprise / Build ghcr.io/openhands/enterprise-server (amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$DD_ENV' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# Install Node.js v20+ and npm (which includes npx)
# Apply security updates to fix CVEs
Expand Down
Loading