diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2023-01-10 00:30:22 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2023-01-10 00:30:22 -0500 |
| commit | dbed7896f4aa748aa8bf2c4720778c0da487e1a9 (patch) | |
| tree | e66534f3c40c51dd62c24a5864cd237b8a3ca639 | |
| parent | c5017fb5f5d5ff3d438f6a07403ac0590554a8db (diff) | |
| download | alpine-cgit-dbed7896f4aa748aa8bf2c4720778c0da487e1a9.tar.gz alpine-cgit-dbed7896f4aa748aa8bf2c4720778c0da487e1a9.tar.xz | |
Remove old repositories file, move repo config directly into the Dockerfile
| -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 |
