dockerfiler 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dockerfiler-0.1.0/PKG-INFO +49 -0
- dockerfiler-0.1.0/README.md +38 -0
- dockerfiler-0.1.0/dockerfiler.egg-info/PKG-INFO +49 -0
- dockerfiler-0.1.0/dockerfiler.egg-info/SOURCES.txt +8 -0
- dockerfiler-0.1.0/dockerfiler.egg-info/dependency_links.txt +1 -0
- dockerfiler-0.1.0/dockerfiler.egg-info/entry_points.txt +2 -0
- dockerfiler-0.1.0/dockerfiler.egg-info/requires.txt +4 -0
- dockerfiler-0.1.0/dockerfiler.egg-info/top_level.txt +1 -0
- dockerfiler-0.1.0/pyproject.toml +23 -0
- dockerfiler-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dockerfiler
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Generate Dockerfiles interactively from templates
|
|
5
|
+
Requires-Python: >=3.12
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: dotenv>=0.9.9
|
|
8
|
+
Requires-Dist: inquirerpy>=0.3.4
|
|
9
|
+
Requires-Dist: jinja2>=3.1.6
|
|
10
|
+
Requires-Dist: questionary>=2.1.1
|
|
11
|
+
|
|
12
|
+
# DockerFiler
|
|
13
|
+
|
|
14
|
+
**Dockerfiler** is a tool that builds a Dockerfile given some interactive prompts.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
You can installing using `pip`:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install dockerfiler # Install the library
|
|
22
|
+
python3 dockerfiler # Run the tool
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Alternatively, you can run it using `uvx`.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
uvx dockerfiler # Run the tool without installing
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
Run it via `pip` or `uvx`:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
python3 dockerfiler # pip
|
|
37
|
+
uvx dockerfiler # uvx
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Then follow the interactive prompts to select your project type and configure your Dockerfile.
|
|
41
|
+
|
|
42
|
+
## Supported project types
|
|
43
|
+
|
|
44
|
+
- Python (`uv`)
|
|
45
|
+
- Django (`uv`)
|
|
46
|
+
|
|
47
|
+
## Requirements
|
|
48
|
+
|
|
49
|
+
Python 3.12+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# DockerFiler
|
|
2
|
+
|
|
3
|
+
**Dockerfiler** is a tool that builds a Dockerfile given some interactive prompts.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
You can installing using `pip`:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install dockerfiler # Install the library
|
|
11
|
+
python3 dockerfiler # Run the tool
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Alternatively, you can run it using `uvx`.
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
uvx dockerfiler # Run the tool without installing
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
Run it via `pip` or `uvx`:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
python3 dockerfiler # pip
|
|
26
|
+
uvx dockerfiler # uvx
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Then follow the interactive prompts to select your project type and configure your Dockerfile.
|
|
30
|
+
|
|
31
|
+
## Supported project types
|
|
32
|
+
|
|
33
|
+
- Python (`uv`)
|
|
34
|
+
- Django (`uv`)
|
|
35
|
+
|
|
36
|
+
## Requirements
|
|
37
|
+
|
|
38
|
+
Python 3.12+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dockerfiler
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Generate Dockerfiles interactively from templates
|
|
5
|
+
Requires-Python: >=3.12
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: dotenv>=0.9.9
|
|
8
|
+
Requires-Dist: inquirerpy>=0.3.4
|
|
9
|
+
Requires-Dist: jinja2>=3.1.6
|
|
10
|
+
Requires-Dist: questionary>=2.1.1
|
|
11
|
+
|
|
12
|
+
# DockerFiler
|
|
13
|
+
|
|
14
|
+
**Dockerfiler** is a tool that builds a Dockerfile given some interactive prompts.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
You can installing using `pip`:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install dockerfiler # Install the library
|
|
22
|
+
python3 dockerfiler # Run the tool
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Alternatively, you can run it using `uvx`.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
uvx dockerfiler # Run the tool without installing
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
Run it via `pip` or `uvx`:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
python3 dockerfiler # pip
|
|
37
|
+
uvx dockerfiler # uvx
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Then follow the interactive prompts to select your project type and configure your Dockerfile.
|
|
41
|
+
|
|
42
|
+
## Supported project types
|
|
43
|
+
|
|
44
|
+
- Python (`uv`)
|
|
45
|
+
- Django (`uv`)
|
|
46
|
+
|
|
47
|
+
## Requirements
|
|
48
|
+
|
|
49
|
+
Python 3.12+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "dockerfiler"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Generate Dockerfiles interactively from templates"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
dependencies = [
|
|
8
|
+
"dotenv>=0.9.9",
|
|
9
|
+
"inquirerpy>=0.3.4",
|
|
10
|
+
"jinja2>=3.1.6",
|
|
11
|
+
"questionary>=2.1.1",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[project.scripts]
|
|
15
|
+
dockerfiler = "dockerfiler.main:main"
|
|
16
|
+
|
|
17
|
+
[build-system]
|
|
18
|
+
requires = ["setuptools>=61"]
|
|
19
|
+
build-backend = "setuptools.build_meta"
|
|
20
|
+
|
|
21
|
+
[tool.setuptools.packages.find]
|
|
22
|
+
where = ["."]
|
|
23
|
+
include = ["dockerfiler*"]
|