https://github.com/clarin-eric/virtual_alpine-python_3
Minimal image for virtualized Python 3 applications based on Alpine Linux.
https://github.com/clarin-eric/virtual_alpine-python_3
Last synced: 5 months ago
JSON representation
Minimal image for virtualized Python 3 applications based on Alpine Linux.
- Host: GitHub
- URL: https://github.com/clarin-eric/virtual_alpine-python_3
- Owner: clarin-eric
- Created: 2015-08-28T08:59:13.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-27T18:06:38.000Z (over 10 years ago)
- Last Synced: 2025-09-10T03:14:40.919Z (9 months ago)
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 18
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
== Requirements
* https://packer.io[Packer].
* https://www.docker.com/[Docker].
=== Suggested requirements
* The `readlink` command-line utility, offered by http://www.gnu.org/software/coreutils/coreutils.html[GNU coreutils].
== To build
* Follow this https://github.com/sanmai-NL/guide_on_submodules[brief guide on submodules] to learn how to manage dependency submodules, if you do not know it already. Complete https://github.com/sanmai-NL/recursive_packer_build/blob/master/Project_dependencies_as_Git_submodules.adoc#getting-started-with-a-git-repository-that-has-submodules[the recursive clone] or submodule initialization of this repository.
* Complete a https://github.com/sanmai-NL/recursive_packer_build#to-use[recursive Packer build].
== To configure
* First make sure your current working directory is the root directory of your local copy of this repository, and that the previously described build process has completed successfully.
* To create the application container:
+
----
docker create \
--entrypoint='/bin/sh' \
--name='alpine-python_3' \
'docker.clarin.eu/alpine-python_3'
----
== To run
Issue:
[source,Sh]
----
docker start 'alpine-python_3'
----