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

Change base image to Debian 11 #11

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 docker/linux/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

ARG BASE_OS
ARG BASE_OS_TAG
FROM ${BASE_OS:-gcr.io/cloud-marketplace-containers/google/debian10}:${BASE_OS_TAG:-latest}
FROM ${BASE_OS:-gcr.io/cloud-marketplace-containers/google/debian11}:${BASE_OS_TAG:-latest}

COPY base/clean-after-apt.sh /opt/clean-after-apt.sh

Expand Down
5 changes: 5 additions & 0 deletions starboard/debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
starboard (16.0-1) UNRELEASED; urgency=medium

* Initial release. (Closes: #XXXXXX)

-- Kaido Kert <[email protected]> Mon, 30 Oct 2023 09:05:37 -0700
11 changes: 11 additions & 0 deletions starboard/debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Source: starboard
Maintainer: Kaido Kert <[email protected]>
Section: misc
Priority: optional
Standards-version: 4.6.2
Build-Depends: debhelper-compat (= 13)

Package: starboard
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Starboard porting library
Empty file added starboard/debian/copyright
Empty file.
3 changes: 3 additions & 0 deletions starboard/debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/make -f
%:
dh $@
1 change: 1 addition & 0 deletions starboard/debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (quilt)
Loading