Skip to content

Commit b93cdb6

Browse files
committed
update runner ubuntu
1 parent a85fcac commit b93cdb6

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6+
## [24.11.1] - 2025-02-12
7+
### Changed
8+
- update docker file to ubuntu 24.04
9+
610
## [24.11.0] - 2024-11-11
711
### Changed
812
- update to ltc version v0.21.4

Dockerfile

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
FROM ubuntu:20.04 as builder
1+
FROM ubuntu:24.04 as builder
22
LABEL org.opencontainers.image.title="ltc-client"
33
LABEL org.opencontainers.image.maintainer="[email protected]"
44
LABEL org.opencontainers.image.url="https://www.ikna.io/"
55
LABEL org.opencontainers.image.description="Dockerized Litecoin client"
66
LABEL org.opencontainers.image.source="https://github.com/graphsense/ltc-client"
77

88
ENV TZ=UTC
9+
ENV LIBDIR=/etc/ld.so.conf
910
ADD docker/Makefile /tmp/Makefile
1011
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
1112
echo $TZ > /etc/timezone && \
@@ -32,7 +33,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
3233
make install && \
3334
strip /usr/local/bin/litecoin*
3435

35-
FROM ubuntu:20.04
36+
FROM ubuntu:24.04
3637

3738
COPY --from=builder /usr/local/bin/litecoin* /usr/local/bin/
3839

@@ -44,15 +45,12 @@ RUN useradd -r -u $UID dockeruser && \
4445
# packages
4546
apt-get update && \
4647
apt-get install --no-install-recommends -y \
47-
libboost-chrono1.71.0 \
48-
libboost-filesystem1.71.0 \
49-
libboost-program-options1.71.0 \
50-
libboost-system1.71.0 \
51-
libboost-thread1.71.0 \
52-
libevent-2.1-7 \
53-
libevent-pthreads-2.1-7 \
48+
libboost-all-dev \
49+
libfmt9 \
50+
libevent-core-2.1-7t64 \
51+
libevent-pthreads-2.1-7t64 \
5452
libminiupnpc17 \
55-
libssl1.1
53+
libssl-dev
5654

5755
USER dockeruser
5856
CMD ["litecoind", "-conf=/opt/graphsense/client.conf", "-datadir=/opt/graphsense/data", "-rest"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
RELEASE := 'v24.11.0'
1+
RELEASE := 'v24.11.1'
22
# RELEASESEM := 'v1.4.2'
33

44
all: build

0 commit comments

Comments
 (0)