Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
juno-unstable,
loki-stable,
loki-unstable,
tanit-unstable,
next-unstable,
stable,
unstable,
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- juno-unstable
- loki-stable
- loki-unstable
- tanit-unstable
- next-unstable
- stable
- unstable
Expand Down
2 changes: 1 addition & 1 deletion development-target
2 changes: 1 addition & 1 deletion next-unstable
16 changes: 16 additions & 0 deletions tanit-stable/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# elementary OS Circe based on Ubuntu Resolute
FROM ubuntu:resolute

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
apt-get -y install --no-install-recommends gpg-agent software-properties-common git && \
add-apt-repository -u -y ppa:elementary-os/os-patches && \
add-apt-repository -u -y ppa:elementary-os/stable && \
apt-get install -y --no-install-recommends elementary-os-overlay && \
apt-get update && \
apt-get -y dist-upgrade && \
apt-get install --no-install-recommends -y elementary-sdk elementary-icon-theme && \
apt-get -y autoremove && \
apt-get autoclean && \
rm -rf /var/lib/apt/lists/*
16 changes: 16 additions & 0 deletions tanit-unstable/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# elementary OS UNSTABLE based on Ubuntu Resolute
FROM ubuntu:resolute

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
apt-get -y install --no-install-recommends gpg-agent software-properties-common git && \
add-apt-repository -u -y ppa:elementary-os/os-patches && \
add-apt-repository -u -y ppa:elementary-os/daily && \
apt-get install -y --no-install-recommends elementary-os-overlay && \
apt-get update && \
apt-get -y dist-upgrade && \
apt-get install --no-install-recommends -y elementary-sdk elementary-icon-theme && \
apt-get -y autoremove && \
apt-get autoclean && \
rm -rf /var/lib/apt/lists/*