Switch edge repositories to spotter

This commit is contained in:
Disassembler 2019-06-02 11:31:24 +02:00
parent b556ee3c30
commit 9d0e30f728
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499
8 changed files with 11 additions and 16 deletions

View File

@ -1,4 +1,3 @@
http://dl-cdn.alpinelinux.org/alpine/v3.9/main
http://dl-cdn.alpinelinux.org/alpine/v3.9/community
@et http://dl-cdn.alpinelinux.org/alpine/edge/testing
@vm https://repo.spotter.cz/apk
@vm http://repo.spotter.cz/apk

View File

@ -5,7 +5,7 @@ LAYER ckan/ckan
RUN EOF
# Install runtime dependencies
apk --no-cache add geos@et libjpeg-turbo libmagic libpq mailcap py2-pip zlib
apk --no-cache add geos libjpeg-turbo libmagic libpq mailcap py2-pip zlib
# Install build dependencies
apk --no-cache add --virtual .deps build-base git libjpeg-turbo-dev libxml2-dev libxslt-dev postgresql-dev python2-dev zlib-dev

View File

@ -5,7 +5,7 @@ LAYER cts/cts
RUN EOF
# Install runtime dependencies
apk --no-cache add geos@et libpq nginx zlib
apk --no-cache add geos libpq nginx zlib
# Install build dependencies
apk --no-cache add --virtual .deps build-base git postgresql-dev python2-dev py2-pip zlib-dev

View File

@ -5,7 +5,7 @@ LAYER shared/sahana
RUN EOF
# Install runtime dependencies
apk --no-cache add geos@et nginx py-gdal@et py2-dateutil py2-lxml py2-numpy py2-pillow py2-psycopg2 py2-requests uwsgi-python
apk --no-cache add geos nginx py-gdal py2-dateutil py2-lxml py2-numpy py2-pillow py2-psycopg2 py2-requests uwsgi-python
# Install build dependencies
apk --no-cache add --virtual .deps build-base git freetype-dev libpng-dev py-numpy-dev py2-pip python2-dev ttf-dejavu

View File

@ -8,7 +8,7 @@ RUN EOF
sed -i 's/postgres:x:70/postgres:x:5432/' /etc/group
# Install PostgreSQL + PostGIS
apk --no-cache add postgresql postgresql-contrib postgis@et
apk --no-cache add postgresql postgresql-contrib postgis
# Create socket directory
mkdir /run/postgresql

View File

@ -8,7 +8,7 @@ RUN EOF
adduser -S -u 5672 -h /usr/lib/rabbitmq -s /bin/false -g rabbitmq -G rabbitmq rabbitmq
# Install RabbitMQ
apk --no-cache add rabbitmq-server@et
apk --no-cache add rabbitmq-server
EOF
MOUNT DIR /srv/rabbitmq/data var/lib/rabbitmq/mnesia

View File

@ -3,14 +3,12 @@ LAYER shared/alpine3.8
COPY https://github.com/gliderlabs/docker-alpine/raw/rootfs/library-3.8/x86_64/versions/library-3.8/x86_64/rootfs.tar.xz
RUN EOF
# Add edge/testing repository
echo '@em http://dl-cdn.alpinelinux.org/alpine/edge/main' >>/etc/apk/repositories
echo '@et http://dl-cdn.alpinelinux.org/alpine/edge/testing' >>/etc/apk/repositories
echo '@ec http://dl-cdn.alpinelinux.org/alpine/edge/community' >>/etc/apk/repositories
# Add spotter repository
echo 'http://repo.spotter.cz/apk' >>/etc/apk/repositories
# Update packages
apk --no-cache upgrade
# Install s6 supervisor
apk --no-cache add libxml2 libxslt s6@em
apk --no-cache add libxml2 libxslt s6
EOF

View File

@ -3,10 +3,8 @@ LAYER shared/alpine3.9
COPY https://github.com/gliderlabs/docker-alpine/raw/rootfs/library-3.9/x86_64/versions/library-3.9/x86_64/rootfs.tar.xz
RUN EOF
# Add edge/testing repository
echo '@em http://dl-cdn.alpinelinux.org/alpine/edge/main' >>/etc/apk/repositories
echo '@et http://dl-cdn.alpinelinux.org/alpine/edge/testing' >>/etc/apk/repositories
echo '@ec http://dl-cdn.alpinelinux.org/alpine/edge/community' >>/etc/apk/repositories
# Add spotter repository
echo 'http://repo.spotter.cz/apk' >>/etc/apk/repositories
# Update packages
apk --no-cache upgrade