-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
github: annotate build warnings
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# syntax=docker/dockerfile-upstream:master | ||
|
||
# Copyright 2024 actions-toolkit authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
frOM busybox as base | ||
Check warning on line 17 in __tests__/fixtures/lint.Dockerfile GitHub Actions / test-itg (github.test.itg.ts, ubuntu-latest)All commands within the Dockerfile should use the same casing (either upper or lower)
|
||
cOpy lint.Dockerfile . | ||
Check warning on line 18 in __tests__/fixtures/lint.Dockerfile GitHub Actions / test-itg (github.test.itg.ts, ubuntu-latest)All commands within the Dockerfile should use the same casing (either upper or lower)
|
||
|
||
from scratch | ||
Check warning on line 20 in __tests__/fixtures/lint.Dockerfile GitHub Actions / test-itg (github.test.itg.ts, ubuntu-latest)All commands within the Dockerfile should use the same casing (either upper or lower)
|
||
MAINTAINER moby@example.com | ||
Check warning on line 21 in __tests__/fixtures/lint.Dockerfile GitHub Actions / test-itg (github.test.itg.ts, ubuntu-latest)The MAINTAINER instruction is deprecated, use a label instead to define an image author
|
||
COPy --from=base \ | ||
Check warning on line 22 in __tests__/fixtures/lint.Dockerfile GitHub Actions / test-itg (github.test.itg.ts, ubuntu-latest)All commands within the Dockerfile should use the same casing (either upper or lower)
|
||
/lint.Dockerfile \ | ||
/ | ||
|
||
CMD [ "echo", "Hello, Norway!" ] | ||
Check warning on line 26 in __tests__/fixtures/lint.Dockerfile GitHub Actions / test-itg (github.test.itg.ts, ubuntu-latest)Multiple instructions of the same type should not be used in the same stage
|
||
CMD [ "echo", "Hello, Sweden!" ] | ||
ENTRYPOINT my-program start | ||
Check warning on line 28 in __tests__/fixtures/lint.Dockerfile GitHub Actions / test-itg (github.test.itg.ts, ubuntu-latest)JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals
|