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