Compare commits

...

2 Commits

Author SHA1 Message Date
4778c14ee2
fix: added -y flag for apt-get install
All checks were successful
Build and publish "Python 3 on Bookworm" image / Build and publish (push) Successful in 18s
Build and publish "Rust on Bookworm" image / Build and publish (push) Successful in 56s
Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
2024-09-08 00:11:49 +02:00
8b65127635
feat: added python on bookworm image
Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
2024-09-08 00:11:33 +02:00
3 changed files with 43 additions and 1 deletions

View File

@ -0,0 +1,36 @@
name: "Build and publish \"Python 3 on Bookworm\" image"
defaults:
run:
shell: sh
on:
push:
branches:
- master
paths:
- python-bookworm/**
jobs:
publish-image:
name: "Build and publish"
runs-on: alpine
steps:
- name: Install dependencies
run: apk add git docker
- name: Check out repository code
uses: actions/checkout@v4
- name: Login to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: git.louis-vallat.dev
username: louis
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./python-bookworm
file: ./python-bookworm/Dockerfile
platforms: |
linux/amd64
push: true
tags: |
git.louis-vallat.dev/louis/action-images:python-bookworm

View File

@ -0,0 +1,6 @@
FROM node:20-bookworm@sha256:48db4f6ea21d134be744207225753a1730c4bc1b4cdf836d44511c36bf0e34d7
RUN apt-get update && \
apt-get install git -y && \
apt-get install python3 python3-pip python3-venv -y && \
rm -rf /var/lib/apt/lists/*

View File

@ -3,6 +3,6 @@ FROM node:20-bookworm@sha256:48db4f6ea21d134be744207225753a1730c4bc1b4cdf836d445
ENV PATH="/root/.cargo/bin:$PATH"
RUN apt-get update && \
apt-get install git && \
apt-get install git -y && \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
rm -rf /var/lib/apt/lists/*