Files
hpcore/test/docker/Dockerfile.ubt.20.04
2021-07-14 16:27:17 +05:30

17 lines
388 B
Docker

# Ubuntu 20.04 + HotPocket
FROM ubuntu:focal
COPY libblake3.so /usr/local/lib/
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
libssl1.1 \
sqlite3 \
fuse3 \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /usr/local/bin/hotpocket
COPY hpcore hpfs hpws appbill /usr/local/bin/hotpocket/
ENTRYPOINT ["/usr/local/bin/hotpocket/hpcore"]