BUILD: ```python_library( name = "bar", so...
# general
s
BUILD:
Copy code
python_library(
    name = "bar",
    sources = ["bar/*.py"]
)

python_tests(
    name="test",
    sources = ["test/test_*.py"]
)

pex_binary(
    name="server",
    entry_point="bar/server.py:main"
)

docker_image(
    name='docker',
    sources=["Dockerfile"]
)