Files
hpcore/test/docker/Dockerfile.ubt.24.04
Kithmini Gunawardhana dec1bdde0b Updated libssl
2024-09-03 16:50:08 +05:30

21 lines
614 B
Docker

# Ubuntu 24.04 + HotPocket
FROM ubuntu:noble
COPY libblake3.so /usr/local/lib/
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
sqlite3 \
fuse3 \
openssl \
ca-certificates \
curl \
&& curl -O http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb \
&& dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /usr/local/bin/hotpocket
COPY hpcore hpfs hpws evernode-license.pdf /usr/local/bin/hotpocket/
ENTRYPOINT ["/usr/local/bin/hotpocket/hpcore"]