File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM scratch
15
+ FROM gcr.io/distroless/static:latest
16
16
17
17
ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN
18
18
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM alpine:3.8
16
-
17
- RUN apk add --no-cache ca-certificates
15
+ # This image requires ca-certificate, which is pre-installed in distroless.
16
+ FROM gcr.io/distroless/static:latest
18
17
19
18
ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN
20
19
ENTRYPOINT ["/ARG_BIN"]
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM alpine:3.8
16
-
17
- RUN apk add --no-cache ca-certificates
15
+ # This image requires ca-certificate, which is pre-installed in distroless.
16
+ FROM gcr.io/distroless/static:latest
18
17
19
18
ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN
20
19
ENTRYPOINT ["/ARG_BIN"]
You can’t perform that action at this time.
0 commit comments