-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
samples
dfiles to use correct base images
There were several Dockerfiles in the `samples` repo that were referring to base images that either no longer exist or are much out of date (5+ years). This commit updates the base images in those files so that Tern/Docker can build and analyze them. Resolves #1235 Signed-off-by: Rose Judge <[email protected]>
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (c) 2017 VMware, Inc. All Rights Reserved. | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
FROM debian:jessie | ||
FROM debian:bullseye | ||
RUN apt-get update && apt-get install -y vim && apt-get clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Copyright (c) 2017 VMware, Inc. All Rights Reserved | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
FROM vmware/photon2:GA | ||
FROM photon:3.0 | ||
RUN tyum install -y git && tyum clean all | ||
RUN tyum install -y vim && tyum clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (c) 2017 VMware, Inc. All Rights Reserved | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
FROM vmware/photon:1.0 | ||
FROM photon:5.0 | ||
RUN tyum install -y git && tyum clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (c) 2017 VMware, Inc. All Rights Reserved | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
FROM vmware/photon:1.0 | ||
FROM photon:5.0 | ||
RUN tyum install -y openjre && tyum clean all |