misc tweaks

This commit is contained in:
dave 2019-06-02 11:55:34 -07:00
parent 0d6c37d0f8
commit 28e36259a5
3 changed files with 8 additions and 3 deletions

View File

@ -2,7 +2,7 @@ FROM ubuntu:bionic
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y python3-pip gpgv1 gnupg1 gpg sudo wget git && \ apt-get install -y python3-pip gpgv1 gnupg1 gpg sudo wget git && \
useradd artifactd useradd artifact
ADD . /tmp/code ADD . /tmp/code

View File

@ -4,7 +4,11 @@ docker-artifact
Software repository server 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 Quickstart

View File

@ -24,5 +24,6 @@ setup(name='repobot',
}, },
include_package_data=True, include_package_data=True,
install_requires=requirements, install_requires=requirements,
package_data={'repobot': ['../templates/pypi/*.html']}, package_data={'repobot': ['../templates/pypi/*.html',
'../templates/tar/*.html']},
zip_safe=False) zip_safe=False)