Little fix after merge

Fix license & etc
This commit is contained in:
Artem Smirnov 2018-09-14 00:17:20 +03:00
parent def38a2ddc
commit 9b564778a9
4 changed files with 19 additions and 10 deletions

View File

@ -1,4 +1,5 @@
# Copyright 2018 Artem B. Smirnov
# Copyright 2018 Jon Azpiazu
# Copyright 2016 Bryan J. Hong
#
# Licensed under the Apache License, Version 2.0 (the "License");
@ -19,9 +20,10 @@ LABEL maintainer="urpylka@gmail.com"
ENV DEBIAN_FRONTEND noninteractive
# Update APT repository and install packages
# Update APT repository & install packages
RUN apt-get -q update \
&& apt-get -y -q install aptly \
&& apt-get -y install \
aptly \
bzip2 \
gnupg \
gpgv \
@ -31,8 +33,8 @@ RUN apt-get -q update \
wget \
xz-utils \
apt-utils \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install Aptly Configuration
COPY assets/aptly.conf /etc/aptly.conf

3
NOTICE
View File

@ -3,7 +3,8 @@ docker-aptly
Copyright 2018 Artem B. Smirnov
This product contains software (https://github.com/urpylka/docker-aptly) developed
by Artem Smirnov (http://github.com/urpylka) licensed under the Apache License.
by Artem Smirnov (http://github.com/urpylka), and Jon Azpiazu (https://github.com/jonazpiazu)
licensed under the Apache License.
Copyright 2016 Bryan J. Hong

View File

@ -1,7 +1,12 @@
#!/bin/bash
mkdir -p ~/.gnupg/
touch ~/.gnupg/gpg.conf
cat >> ~/.gnupg/gpg.conf <<EOF
#! /usr/bin/env bash
# Copyright 2018 Artem B. Smirnov
# Copyright 2018 Jon Azpiazu
# Licensed under the Apache License, Version 2.0
mkdir -p /root/.gnupg/
touch /root/.gnupg/gpg.conf
cat >> /root/.gnupg/gpg.conf <<EOF
personal-digest-preferences SHA256
cert-digest-algo SHA256
default-preference-list SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES CAST5 ZLIB BZIP2 ZIP Uncompressed

View File

@ -1,5 +1,6 @@
#! /usr/bin/env bash
# Copyright 2018 Artem B. Smirnov
# Copyright 2016 Bryan J. Hong
# Licensed under the Apache License, Version 2.0
@ -7,7 +8,7 @@ cat << EOF > /etc/nginx/conf.d/default.conf
server_names_hash_bucket_size 64;
server {
root /opt/aptly/public;
server_name _;
server_name ${HOSTNAME};
location / {
autoindex on;