mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-07-09 10:57:55 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f59b0d2b06 | |||
| aa42fc1025 | |||
| 080da87b4e | |||
| 87e6a36d9b |
@@ -16,3 +16,4 @@ git push origin v$version master
|
|||||||
- update version in content/download.md
|
- update version in content/download.md
|
||||||
- push commit to master
|
- push commit to master
|
||||||
- create release announcement on https://github.com/aptly-dev/aptly/discussions
|
- create release announcement on https://github.com/aptly-dev/aptly/discussions
|
||||||
|
- update aptly infrastructure
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
module github.com/aptly-dev/aptly
|
module github.com/aptly-dev/aptly
|
||||||
|
|
||||||
go 1.25.0
|
go 1.26
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/AlekSi/pointer v1.1.0
|
github.com/AlekSi/pointer v1.1.0
|
||||||
|
|||||||
+3
-3
@@ -2,7 +2,7 @@ FROM debian:trixie-slim
|
|||||||
|
|
||||||
RUN echo 'deb http://deb.debian.org/debian trixie-backports main' > /etc/apt/sources.list.d/backports.list && \
|
RUN echo 'deb http://deb.debian.org/debian trixie-backports main' > /etc/apt/sources.list.d/backports.list && \
|
||||||
apt-get update -y && apt-get install -y --no-install-recommends curl gnupg bzip2 xz-utils ca-certificates vim procps \
|
apt-get update -y && apt-get install -y --no-install-recommends curl gnupg bzip2 xz-utils ca-certificates vim procps \
|
||||||
golang-1.25 golang-1.25-go golang-1.25-src \
|
golang-1.26 golang-1.26-go golang-1.26-src \
|
||||||
make git python3 python3-requests-unixsocket python3-termcolor python3-swiftclient python3-boto3 python3-azure-storage \
|
make git python3 python3-requests-unixsocket python3-termcolor python3-swiftclient python3-boto3 python3-azure-storage \
|
||||||
g++ python3-etcd3 python3-plyvel graphviz devscripts sudo dh-golang binutils-i686-linux-gnu binutils-aarch64-linux-gnu \
|
g++ python3-etcd3 python3-plyvel graphviz devscripts sudo dh-golang binutils-i686-linux-gnu binutils-aarch64-linux-gnu \
|
||||||
binutils-arm-linux-gnueabihf bash-completion zip ruby-dev lintian npm \
|
binutils-arm-linux-gnueabihf bash-completion zip ruby-dev lintian npm \
|
||||||
@@ -10,8 +10,8 @@ RUN echo 'deb http://deb.debian.org/debian trixie-backports main' > /etc/apt/sou
|
|||||||
gcc-i686-linux-gnu gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu \
|
gcc-i686-linux-gnu gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu \
|
||||||
faketime dput-ng && \
|
faketime dput-ng && \
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
||||||
ln -sf /usr/lib/go-1.25/bin/go /usr/local/bin/go && \
|
ln -sf /usr/lib/go-1.26/bin/go /usr/local/bin/go && \
|
||||||
ln -sf /usr/lib/go-1.25/bin/gofmt /usr/local/bin/gofmt
|
ln -sf /usr/lib/go-1.26/bin/gofmt /usr/local/bin/gofmt
|
||||||
|
|
||||||
RUN useradd -m --shell /bin/bash --home-dir /var/lib/aptly aptly
|
RUN useradd -m --shell /bin/bash --home-dir /var/lib/aptly aptly
|
||||||
RUN sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/' /var/lib/aptly/.bashrc
|
RUN sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/' /var/lib/aptly/.bashrc
|
||||||
|
|||||||
Reference in New Issue
Block a user