All checks were successful
		
		
	
	BlockStorage/repertory/pipeline/head This commit looks good
				
			# Changelog ## v2.0.4-rc ### BREAKING CHANGES * `renterd` v2.0.0+ is now required. Prior versions will fail to mount. ### Issues * \#35 [bug] Low frequency check is set to '0' instead of 1 hour by default * \#36 [bug] Max cache size bytes is set to '0' by default ### Changes from v2.0.3-rc * Added Sia API version check prior to mounting * Added back `-cv` (check version) CLI option * Continue documentation updates * Fixed setting `ApiAuth` via `set_value_by_name` * Fixed setting `HostConfig.ApiUser` via `set_value_by_name` * Fixed setting `HostConfig.Path` via `set_value_by_name` * Fixed setting `HostConfig.Protocol` via `set_value_by_name` * Improved ring buffer read-ahead * Integrated `renterd` version 2.0.0 * Prefer using local cache file when opening files * Refactored `app_config` unit tests * Refactored polling to be more accurate on scheduling tasks Reviewed-on: #37
		
			
				
	
	
		
			87 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#comment
 | 
						|
FROM         arm64v8/alpine:3.21.3
 | 
						|
MAINTAINER   Scott E. Graves <scott.e.graves@protonmail.com>
 | 
						|
CMD          bash
 | 
						|
 | 
						|
RUN apk update
 | 
						|
RUN apk upgrade
 | 
						|
RUN apk add \
 | 
						|
  autoconf \
 | 
						|
  automake \
 | 
						|
  bash \
 | 
						|
  binutils \
 | 
						|
  binutils-dev \
 | 
						|
  bison \
 | 
						|
  boost-dev \
 | 
						|
  bzip2-static \
 | 
						|
  cmake \
 | 
						|
  diffutils \
 | 
						|
  elfutils-dev \
 | 
						|
  file \
 | 
						|
  fontconfig-dev \
 | 
						|
  fontconfig-static \
 | 
						|
  freetype \
 | 
						|
  freetype-dev \
 | 
						|
  freetype-static \
 | 
						|
  fuse3 \
 | 
						|
  fuse3-dev \
 | 
						|
  fuse3-static \
 | 
						|
  g++ \
 | 
						|
  gcc \
 | 
						|
  gflags \
 | 
						|
  gflags-dev \
 | 
						|
  git \
 | 
						|
  icu-dev \
 | 
						|
  icu-libs \
 | 
						|
  icu-static \
 | 
						|
  libogg-dev \
 | 
						|
  libogg-static \
 | 
						|
  libtool \
 | 
						|
  libudev-zero \
 | 
						|
  libudev-zero-dev \
 | 
						|
  libunwind \
 | 
						|
  libunwind-dev \
 | 
						|
  libunwind-static \
 | 
						|
  liburing \
 | 
						|
  liburing-dev \
 | 
						|
  libvorbis-dev \
 | 
						|
  libvorbis-static \
 | 
						|
  libx11-dev \
 | 
						|
  libx11-static \
 | 
						|
  libxcursor \
 | 
						|
  libxcursor-dev \
 | 
						|
  libxrandr \
 | 
						|
  libxrandr-dev \
 | 
						|
  linux-headers \
 | 
						|
  make \
 | 
						|
  mesa \
 | 
						|
  mesa-dev \
 | 
						|
  meson \
 | 
						|
  musl-dev \
 | 
						|
  ninja \
 | 
						|
  openal-soft-dev \
 | 
						|
  openal-soft-libs \
 | 
						|
  openssl \
 | 
						|
  patch \
 | 
						|
  perl \
 | 
						|
  pkgconfig \
 | 
						|
  rsync \
 | 
						|
  tcl \
 | 
						|
  tcl-dev \
 | 
						|
  texinfo \
 | 
						|
  wget \
 | 
						|
  xz \
 | 
						|
  xz-dev \
 | 
						|
  xz-libs \
 | 
						|
  zlib \
 | 
						|
  zlib-dev \
 | 
						|
  zlib-static \
 | 
						|
  zstd \
 | 
						|
  zstd-dev \
 | 
						|
  zstd-libs \
 | 
						|
  zstd-static \
 | 
						|
  xz-static
 | 
						|
 | 
						|
RUN ln -sf /usr/bin/aclocal-1.17 /usr/bin/aclocal-1.16
 | 
						|
RUN ln -sf /usr/bin/automake-1.17 /usr/bin/automake-1.16
 |