[info=b9ea9a66a31fe4d1f281483642774de8]

OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/ruby-3.3-image?expand=0&rev=50
This commit is contained in:
Dan Čermák 2024-06-12 13:26:59 +00:00 committed by Git OBS Bridge
parent cfb9583715
commit c0aeba93ad
2 changed files with 67 additions and 2 deletions

View File

@ -1,7 +1,67 @@
# The openSUSE Tumbleweed BCI Ruby 3.3 Container Image # Ruby 3.3 Container Image
![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green) ![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)
Ruby 3.3 container based on the openSUSE Tumbleweed Base Container Image. ## Description
[Ruby](https://www.ruby-lang.org/) is a dynamic, reflective, object-oriented, general-purpose, open-source programming language. It supports multiple programming paradigms, including functional, object-oriented, and imperative. It also has a dynamic type system and automatic memory management.
## Usage
To deploy an application, install dependencies, copy the sources, and configure the application's main script:
```Dockerfile
FROM registry.opensuse.org/opensuse/bci/ruby:3.3
# displays an error message if Gemfile and Gemfile.lock are not in sync
RUN bundle config --global frozen 1
WORKDIR /app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
CMD [ "ruby", "./main-script.rb" ]
```
Build and run the container image:
```ShellSession
$ podman build -t my-ruby-app .
$ podman run -it --rm my-ruby-app
```
The example above assumes that there is a `Gemfile.lock` file in the application directory.
To generate a `Gemfile.lock` file, use the following command:
```ShellSession
$ podman run --rm -v "$PWD":/app:Z -w /app registry.opensuse.org/opensuse/bci/ruby:3.3 bundle lock
```
To run a single script inside a container, use the following command:
```ShellSession
$ podman run --rm -v "$PWD":/app:Z -w /app registry.opensuse.org/opensuse/bci/ruby:3.3 ruby script.rb
```
## Encoding
The Ruby image sets the locale environment variable `LANG` to `C.UTF-8`.
## Additional tools
The following additional tools are included in the image:
- curl
- gawk
- gcc-c++
- git-core
- make
- sqlite3-devel
- timezone
- util-linux
## Licensing ## Licensing

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Jun 12 13:21:43 UTC 2024 - Alexandre Vicenzi <alexandre.vicenzi@suse.com>
- expand README with more details
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 10 15:11:25 UTC 2024 - Dirk Mueller <dmueller@suse.com> Mon Jun 10 15:11:25 UTC 2024 - Dirk Mueller <dmueller@suse.com>