Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update samples dfiles to use correct base images #1238

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/debian_vim/Dockerfile
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
2 changes: 1 addition & 1 deletion samples/photon_3_layers/Dockerfile
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
2 changes: 1 addition & 1 deletion samples/photon_git/Dockerfile
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
2 changes: 1 addition & 1 deletion samples/photon_openjre/Dockerfile
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
Loading