Skip to content

Commit 0302a69

Browse files
committed
chore: resolve linting issues found by super linter
Signed-off-by: Avi Miller <[email protected]>
1 parent 54d9ce6 commit 0302a69

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

OracleCloudInfrastructure/oci-cli/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Copyright (c) 2022, 2023 Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
#
4+
# hadolint global ignore=DL3013
35

46
FROM ghcr.io/oracle/oraclelinux8-python:3.9
57

@@ -12,8 +14,8 @@ ENV IMAGE_BUILDTIME=${BUILDTIME} \
1214
IMAGE_REVISION=${REVISION}
1315

1416
RUN dnf -y install jq && rm -rf /var/cache/dnf/* \
15-
&& python3 -m pip install --upgrade pip \
16-
&& python3 -m pip install oci-cli \
17+
&& python3 -m pip install --no-cache-dir --upgrade pip \
18+
&& python3 -m pip install --no-cache-dir oci-cli \
1719
&& cp /usr/local/lib/python3.9/site-packages/oci_cli/bin/oci_autocomplete.sh /usr/local/bin/oci_autocomplete.sh \
1820
&& chmod +x /usr/local/bin/oci_autocomplete.sh \
1921
&& useradd -m -d /oracle oracle \

0 commit comments

Comments
 (0)