Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add Docker build image instructions to README #81

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,12 @@ And then just compile using make.
Aside from gcc/g++ or clang, you will also need liblz4-dev, libdeflate-dev, and libuv1-dev - or
similar.

The following Dockerfile will produce an Ubuntu image with the needed build dependencies:

FROM ubuntu:latest

RUN apt-get update && apt-get install -y build-essential pkgconf zlib1g-dev liblz4-dev libuv1-dev

### Packages

Community provided packages are available on some platforms under "maxcso". Please confirm
Expand Down