mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
fix alpine repo urls
Signed-off-by: Jess Frazelle <acidburn@github.com>
This commit is contained in:
parent
42a6a534bc
commit
3c0ec06020
|
@ -7,7 +7,7 @@ FROM alpine:latest
|
|||
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
||||
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
||||
ca-certificates \
|
||||
clisp
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ RUN apk add --no-cache \
|
|||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN pip install \
|
||||
cffi \
|
||||
lxml \
|
||||
pyopenssl
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|||
# Install emacs:
|
||||
# Note: Emacs is only community repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
|
||||
emacs
|
||||
|
||||
# Autorun doctor
|
||||
|
|
|
@ -21,7 +21,7 @@ LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|||
# Install emacs:
|
||||
# Note: Emacs is only in community repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
|
||||
emacs
|
||||
|
||||
# Autorun dunnet
|
||||
|
|
|
@ -11,7 +11,7 @@ FROM alpine:latest
|
|||
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
|
||||
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/community \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community \
|
||||
evince \
|
||||
ttf-opensans
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM alpine:latest
|
|||
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
||||
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
||||
gnuplot
|
||||
|
||||
ENTRYPOINT ["gnuplot"]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
FROM alpine:latest
|
||||
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/latest-stable/community \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/latest-stable/community \
|
||||
ca-certificates \
|
||||
perl-datetime \
|
||||
perl-timedate
|
||||
|
|
|
@ -14,7 +14,7 @@ FROM alpine:latest
|
|||
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
||||
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/testing \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \
|
||||
libreoffice \
|
||||
ttf-dejavu
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ RUN apk add --no-cache \
|
|||
libxml2 \
|
||||
libressl \
|
||||
xclip \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/main
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/main
|
||||
|
||||
RUN set -x \
|
||||
&& apk add --no-cache --virtual .build-deps \
|
||||
|
|
|
@ -23,7 +23,7 @@ RUN apk --no-cache add \
|
|||
mutt \
|
||||
mutt-doc \
|
||||
vim \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/main
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/main
|
||||
|
||||
# a browser is necessary!
|
||||
ENV BROWSER lynx
|
||||
|
|
|
@ -5,7 +5,7 @@ ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
|||
ENV GOPATH /go
|
||||
|
||||
RUN apk add --no-cache \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/main/ \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/main/ \
|
||||
bash \
|
||||
ca-certificates \
|
||||
gcc \
|
||||
|
|
|
@ -8,7 +8,7 @@ RUN apk add --no-cache \
|
|||
postfix \
|
||||
rsyslog \
|
||||
runit \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/main
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/main
|
||||
|
||||
COPY service /etc/service
|
||||
COPY runit_bootstrap /usr/sbin/runit_bootstrap
|
||||
|
|
|
@ -14,7 +14,7 @@ LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|||
|
||||
|
||||
RUN apk add --no-cache \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/community \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community \
|
||||
ca-certificates \
|
||||
git \
|
||||
python \
|
||||
|
|
|
@ -21,7 +21,7 @@ LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|||
# Install emacs:
|
||||
# Note: Emacs is only in community repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
||||
RUN apk --no-cache add \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
|
||||
emacs
|
||||
|
||||
# Autorun tetris
|
||||
|
|
|
@ -5,7 +5,7 @@ ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
|||
ENV GOPATH /go
|
||||
|
||||
RUN apk add --no-cache \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/main/ \
|
||||
--repository http://dl-cdn.alpinelinux.org/alpine/edge/main/ \
|
||||
bash \
|
||||
ca-certificates \
|
||||
git \
|
||||
|
|
Loading…
Reference in New Issue
Block a user