sql-ledger icon indicating copy to clipboard operation
sql-ledger copied to clipboard

aarch64 docker images missing

Open KlavsKlavsen opened this issue 1 year ago • 20 comments

Hi,

I'm trying to get this to run on my orangepi (same as raspberry pi) - aarch64 architecture - but you only release amd64 builds unfortunately.

Trying to do docker build from this repo for some reason (I have yet to find) fails on my aarch64 ubuntu install:

 r$ docker build . -t tekki/sql-ledger:aarch64
Sending build context to Docker daemon   5.12kB
Step 1/5 : FROM httpd:bullseye
bullseye: Pulling from library/httpd
92ad47755700: Pull complete 
70a8c7ffcd85: Pull complete 
69b764e3301e: Pull complete 
0c9233d952bc: Pull complete 
c0d2d61c783c: Pull complete 
Digest: sha256:4bdb49b01ab1a7b019410337588f772eebe6ae01d038987aa849fcb798fbf26f
Status: Downloaded newer image for httpd:bullseye
 ---> ffae72c8d8b4
Step 2/5 : RUN set -ex   && apt-get update   && apt-get install -y --no-install-recommends     ca-certificates     libarchive-extract-perl     libarchive-zip-perl     libdbd-pg-perl     libexcel-writer-xlsx-perl     libio-socket-ssl-perl     libmojolicious-perl     posgresql-client   && rm -rf /var/lib/apt/lists/*
 ---> Running in 0fc6994ee5b6
+ apt-get update
Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB]
Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]
Get:4 http://deb.debian.org/debian bullseye/main arm64 Packages [8071 kB]
Get:5 http://deb.debian.org/debian-security bullseye-security/main arm64 Packages [248 kB]
Get:6 http://deb.debian.org/debian bullseye-updates/main arm64 Packages [12.1 kB]
Fetched 8539 kB in 3s (3265 kB/s)
Reading package lists...
+ apt-get install -y --no-install-recommends ca-certificates libarchive-extract-perl libarchive-zip-perl libdbd-pg-perl libexcel-writer-xlsx-perl libio-socket-ssl-perl libmojolicious-perl posgresql-client
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package posgresql-client
The command '/bin/sh -c set -ex   && apt-get update   && apt-get install -y --no-install-recommends     ca-certificates     libarchive-extract-perl     libarchive-zip-perl     libdbd-pg-perl     libexcel-writer-xlsx-perl     libio-socket-ssl-perl     libmojolicious-perl     posgresql-client   && rm -rf /var/lib/apt/lists/*' returned a non-zero code: 100

KlavsKlavsen avatar Jul 27 '23 10:07 KlavsKlavsen