mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
./tools/build-env/build.sh Creates a container image based on Debian or Ubuntu ./tools/build-env/here.sh Starts a container and mounts in the current working directory, from where one can ./configure; make; make test etc
31 lines
1.2 KiB
Docker
31 lines
1.2 KiB
Docker
ARG os
|
|
ARG dist
|
|
FROM ${os:-debian}:${dist:-sid}
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN set -ex; \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
ccache dh-lua libicu-dev libidn11-dev libssl-dev \
|
|
lua-bitop lua-dbi-mysql lua-dbi-postgresql lua-dbi-sqlite3 \
|
|
lua-event lua-expat lua-filesystem lua-ldap lua-sec lua-socket \
|
|
luarocks shellcheck mercurial; \
|
|
apt-get install -y ca-certificates dns-root-data; \
|
|
apt-get install -y lua-bit32 || true; \
|
|
apt-get install -y lua-busted || true; \
|
|
apt-get install -y lua-check || true; \
|
|
apt-get install -y lua-readline || true; \
|
|
apt-get install -y lua-unbound || true; \
|
|
update-alternatives --set lua-interpreter /usr/bin/lua5.4 || true \
|
|
apt-get clean
|
|
|
|
# Place this file in an empty directory and build the image with
|
|
# podman build . -t prosody.im/build-env
|
|
#
|
|
# Substituting podman for docker should work, where that is what's available.
|
|
#
|
|
# Then in a source directory, run:
|
|
# podman run -it --rm -v "$PWD:$PWD" -w "$PWD" --entrypoint /bin/bash \
|
|
# --userns=keep-id --network host prosody.im/build-env
|
|
#
|
|
# In the resulting environment everything required to compile and run prosody
|
|
# is available, so e.g. `./configure; make; ./prosody` should Just Work!
|