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

[devkits] python devkit #197

Merged
merged 1 commit into from
Apr 8, 2024
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
19 changes: 19 additions & 0 deletions .docker/python.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM debian:unstable AS build
ARG VERSION
RUN apt update && apt install -y wget adduser git
RUN adduser --disabled-password dev
RUN apt-get install -y --no-install-recommends \
make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev \
libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev \
libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
&& apt-get install -y mecab-ipadic-utf8
USER dev
ENV PYENV_ROOT="/home/dev/.pyenv"
ENV PATH="/home/dev/.pyenv/shims:/home/dev/.pyenv/bin:$PATH"
RUN git clone --depth=1 https://github.com/yyuu/pyenv /home/dev/.pyenv \
&& pyenv install ${VERSION} \
&& pyenv global ${VERSION} \
&& pyenv rehash

FROM scratch
COPY --from=build /home/dev/.pyenv /home/dev/.pyenv
39 changes: 39 additions & 0 deletions .github/workflows/devkit-python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Devkit (python)

on:
push:
branches:
- master
- main
paths:
- '.docker/python.dockerfile'
- '.github/workflows/devkit-python.yml'
pull_request:
paths:
- '.docker/python.dockerfile'
- '.github/workflows/devkit-python.yml'
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-22.04
strategy:
matrix:
lang: ["python"]
version: ["3.11.5"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Publish
uses: elgohr/Publish-Docker-Github-Action@main
with:
name: shish2k/rosettaboy-devkit-${{ matrix.lang }}
dockerfile: .docker/${{ matrix.lang }}.dockerfile
buildoptions: "--build-arg VERSION=${{ matrix.version }}"
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: ${{ matrix.version }}
platforms: linux/amd64,linux/arm64