opensmtpd-alpine-docker/Dockerfile
Memiks 4d1ecd866f
Some checks failed
continuous-integration/drone/push Build is failing
debian
2019-12-06 12:04:41 +09:00

17 lines
468 B
Docker

FROM debian
LABEL Maintainer="Memiks <contact@memiks.fr>" \
Description="Lightweight container with OpenSMTPD on Debian Linux."
# Install packages
RUN apt -qy update
RUN apt-get install -qy \
build-essential linux-libc-dev \
autoconf automake autoconf bison libevent libressl libasr cmake libtool pkg-config \
git curl gawk tar bzip2 ncompress xz-utils tree
# Override shell for bash-y debugging goodness
SHELL ["/bin/bash", "-exc"]
WORKDIR /tmp