This product is not supported for your selected Datadog site. ().
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください

Metadata

ID: docker-best-practices/copy-end-slash

Language: Docker

Severity: Warning

Category: Best Practices

Description

This rule enforces that when the COPY instruction in a Dockerfile has more than two arguments, the last argument must be a directory path ending with a slash (/). This ensures that multiple source files or directories are copied into the specified destination directory correctly. Always ensure that when copying multiple files or directories, the destination path ends with a slash, clearly indicating it is a directory. For example, use COPY package.json yarn.lock my_app/ instead of COPY package.json yarn.lock my_app. This practice improves clarity and prevents ambiguous or incorrect Docker image builds.

Non-Compliant Code Examples

FROM node:carbon
COPY package.json yarn.lock my_app

Compliant Code Examples

FROM node:carbon
COPY package.json yarn.lock my_app/
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

シームレスな統合。 Datadog Code Security をお試しください