https://github.com/firefly-cpp/fedora-container-data-science
https://github.com/firefly-cpp/fedora-container-data-science
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/firefly-cpp/fedora-container-data-science
- Owner: firefly-cpp
- Created: 2023-01-07T16:06:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-12T10:12:03.000Z (11 months ago)
- Last Synced: 2025-01-12T11:20:41.037Z (11 months ago)
- Language: Dockerfile
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A basic container image for performing data science reproducibility studies based on Fedora Linux
The repository is devoted to a sample container image built on the top of Fedora Linux that installs some data science dependencies using the "dnf" package manager and runs a python script.
## 🚀 Build & run
### 🐳 Docker
The image can be built using the following command:
```sh
$ docker build --tag ds .
```
Run the image using:
```sh
docker run -it --name ds-container -v "$PWD:/var/ds" ds
```
### 🦦 Podman
The image can be built using the following command:
```sh
$ podman build --tag ds .
```
Run the image using:
```sh
podman run -it --name ds-container -v "$PWD:/var/ds" ds
```
## Disclaimer
This software is provided as-is, and there are no guarantees that it fits your purposes or that it is bug-free. Use it at your own risk!