diff --git a/Dockerfile b/Dockerfile index 4faa60a..864de6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:bionic RUN apt-get update && \ apt-get install -y python3-pip gpgv1 gnupg1 gpg sudo wget git && \ - useradd artifactd + useradd artifact ADD . /tmp/code diff --git a/README.md b/README.md index 6c5fdd8..af1a9fe 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,11 @@ docker-artifact Software repository server -Artifactd provides an HTTP API for repository management. Currently, Python and Apt repositories are supported. +Artifactd provides an HTTP API for repository management. Supported repository formats are: + +- Python (Pypi) +- Apt +- Generic tarball Quickstart diff --git a/setup.py b/setup.py index ffb7943..c2a7865 100644 --- a/setup.py +++ b/setup.py @@ -24,5 +24,6 @@ setup(name='repobot', }, include_package_data=True, install_requires=requirements, - package_data={'repobot': ['../templates/pypi/*.html']}, + package_data={'repobot': ['../templates/pypi/*.html', + '../templates/tar/*.html']}, zip_safe=False)