معرفی شرکت ها


dockerfile-3.2.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Parse a dockerfile into a high-level representation using the official go parser.
ویژگی مقدار
سیستم عامل -
نام فایل dockerfile-3.2.0
نام dockerfile
نسخه کتابخانه 3.2.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Anthony Sottile
ایمیل نویسنده asottile@umich.edu
آدرس صفحه اصلی https://github.com/asottile/dockerfile
آدرس اینترنتی https://pypi.org/project/dockerfile/
مجوز MIT
[![Build Status](https://asottile.visualstudio.com/asottile/_apis/build/status/asottile.dockerfile?branchName=master)](https://asottile.visualstudio.com/asottile/_build/latest?definitionId=14&branchName=master) [![Build status](https://ci.appveyor.com/api/projects/status/l5kj12ysd49xul1l?svg=true)](https://ci.appveyor.com/project/asottile/dockerfile) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/asottile/dockerfile/master.svg)](https://results.pre-commit.ci/latest/github/asottile/dockerfile/master) dockerfile ========== The goal of this repository is to provide a wrapper around [docker/docker](https://github.com/docker/docker)'s parser for dockerfiles. ## python library ### Installation This project uses [setuptools-golang](https://github.com/asottile/setuptools-golang) when built from source. To build from source you'll need a go compiler. If you're using linux and sufficiently new pip (>=8.1) you should be able to just download prebuilt manylinux1 wheels. ``` pip install dockerfile ``` ### Usage There's three api functions provided by this library: #### `dockerfile.all_cmds()` List all of the known dockerfile cmds. ```python >>> dockerfile.all_cmds() ('add', 'arg', 'cmd', 'copy', 'entrypoint', 'env', 'expose', 'from', 'healthcheck', 'label', 'maintainer', 'onbuild', 'run', 'shell', 'stopsignal', 'user', 'volume', 'workdir') ``` #### `dockerfile.parse_file(filename)` Parse a Dockerfile by filename. Returns a `tuple` of `dockerfile.Command` objects representing each layer of the Dockerfile. Possible exceptions: - `dockerfile.GoIOError`: The file could not be opened. - `dockerfile.GoParseError`: The Dockerfile was not parseable. ```python >>> pprint.pprint(dockerfile.parse_file('testfiles/Dockerfile.ok')) (Command(cmd='from', sub_cmd=None, json=False, original='FROM ubuntu:xenial', start_line=1, flags=(), value=('ubuntu:xenial',)), Command(cmd='cmd', sub_cmd=None, json=True, original='CMD ["echo", "hi"]', start_line=2, flags=(), value=('echo', 'hi'))) ``` #### `dockerfile.parse_string(s)` Parse a dockerfile using a string. Returns a `tuple` of `dockerfile.Command` objects representing each layer of the Dockerfile. Possible exceptions: - `dockerfile.GoParseError`: The Dockerfile was not parseable. ```python >>> dockerfile.parse_string('FROM ubuntu:xenial') (Command(cmd='from', sub_cmd=None, json=False, original='FROM ubuntu:xenial', start_line=1, flags=(), value=('ubuntu:xenial',)),) ``` ## go library Slightly more convenient than the api provided by docker/docker? Might not be terribly useful -- the main point of this repository was a python wrapper. ### Installation ``` go get github.com/asottile/dockerfile ``` ### Usage [godoc](https://godoc.org/github.com/asottile/dockerfile)


زبان مورد نیاز

مقدار نام
>=3.6.1 Python


نحوه نصب


نصب پکیج whl dockerfile-3.2.0:

    pip install dockerfile-3.2.0.whl


نصب پکیج tar.gz dockerfile-3.2.0:

    pip install dockerfile-3.2.0.tar.gz