diff options
| -rw-r--r-- | Dockerfile | 5 | ||||
| -rw-r--r-- | repositories | 2 |
2 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,9 @@ FROM docker.io/alpine:3.17 -COPY repositories /etc/apk/ +RUN echo "http://dl-cdn.alpinelinux.org/alpine/v3.17/main" \ + > /etc/apk/repositories +RUN echo "http://dl-cdn.alpinelinux.org/alpine/v3.17/community" \ + >> /etc/apk/repositories RUN apk update RUN apk add fcgiwrap python3 py3-pygments py3-markdown cgit git openssh nginx xz diff --git a/repositories b/repositories deleted file mode 100644 index 7daa99d..0000000 --- a/repositories +++ /dev/null @@ -1,2 +0,0 @@ -http://dl-cdn.alpinelinux.org/alpine/v3.14/main -http://dl-cdn.alpinelinux.org/alpine/v3.14/community |
