18.0.3
Abstract
Fix the Dockerfile by removing the undefined $WORKDIR variable and copying the build context into the current working directory instead. This prevents accidental copies to a literal "$WORKDIR" path and aligns with Docker’s WORKDIR semantics.
Background
During image builds, the Dockerfile used an undefined $WORKDIR variable as the COPY destination. GitHub displayed a warning about this in the repository/PR checks, and the warning had remained unaddressed.
Destructive Changes
N/A
Known Limitations
N/A