Skip to content

Commit c50a356

Browse files
benschermelJohnSully
authored andcommitted
update Dockerfile
1 parent 17e96b9 commit c50a356

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

Dockerfile

Lines changed: 0 additions & 10 deletions
This file was deleted.

pkg/deb/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
This directory contains scripts and components needed to generate debian packages on different distributions/architectures from source
44

5+
The 'debian' directory contains debian source code for bionic, buster and later distributions as it uses functions only available with debhelper11+. 'debian_dh9' is used for xenial, stretch and earlier distributions using debhelper9.
6+
57
You will need to install pbuilder `sudo apt install pbuilder` along with other distribution specific dependancies
68

79
Generate deb packages with the following script command run from this directory:
@@ -10,7 +12,7 @@ Generate deb packages with the following script command run from this directory:
1012
$ ./deb-buildsource.sh
1113
```
1214

13-
This generates a directory structure, .dsc file, original.tar.gz, .changes files and new changelog for the distribution and architecture installed.
15+
This generates a directory structure, .dsc file, original.tar.gz, and new changelog for the distribution and architecture installed.
1416

1517
When complete the produced debian packages will be located in deb_files_generated directory.
1618

pkg/docker/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ RUN \
5656
ln -s keydb.conf redis.conf
5757

5858
# Ensure deps installed for binaries
59-
# libc6 (>= 2.17), libcurl4 (>= 7.16.2), libgcc1 (>= 1:3.0), libstdc++6 (>= 4.8.1), libuuid1 (>= 2.16), libssl1.1 (>= 1.1.1)
6059
RUN set -eux; \
6160
\
6261
savedAptMark="$(apt-mark showmanual)"; \
@@ -68,6 +67,10 @@ RUN set -eux; \
6867
libstdc++6 \
6968
libgcc1 \
7069
zlib1g \
70+
libbz2-1.0 \
71+
liblz4-1 \
72+
libsnappy1v5 \
73+
libzstd1 \
7174
; \
7275
rm -rf /var/lib/apt/lists/*
7376

pkg/rpm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Generate RPM files for the generated binaries
22

3-
After making the binaries you can run the following script
3+
After running make to produce keydb binaries you can run the following script to create rpm package
44

55
Usage:
66
```

0 commit comments

Comments
 (0)