-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21c6a68
commit b0f21a4
Showing
5 changed files
with
84 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build pre | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
platforms: linux/i386 | ||
context: "{{defaultContext}}:containers" | ||
file: Dockerfile-pre | ||
push: true | ||
provenance: false | ||
tags: ghcr.io/r-hub/evercran/pre,rhub/evercran:pre,docker.io/rhub/evercran:pre |
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
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# -*- Dockerfile -*- | ||
|
||
FROM debian/eol:sarge | ||
|
||
ENV PAGER=less | ||
ENV LESS=-r | ||
|
||
RUN echo 'deb http://ppa.r-pkg.org/evercran sarge main' \ | ||
>> /etc/apt/sources.list | ||
|
||
COPY prerelease-versions.txt . | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y linux32 `cat prerelease-versions.txt | sed 's/^/r-/'` && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
mkdir -p /var/lib/apt/lists/partial && \ | ||
rm prerelease-versions.txt | ||
|
||
WORKDIR /root | ||
|
||
ENTRYPOINT [ "linux32" ] | ||
CMD [ "bash" ] |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
0.0 | ||
0.1 | ||
0.2 | ||
0.3 | ||
0.4 | ||
0.5 | ||
0.6 | ||
0.7 | ||
0.8 | ||
0.9 | ||
0.10 | ||
0.11 | ||
0.12 | ||
0.13 | ||
0.14 | ||
0.15 | ||
0.16 | ||
0.16.1 |