This commit is contained in:
parent
b1476e4d23
commit
f908b11a32
8
.drone.yml
Normal file
8
.drone.yml
Normal file
@ -0,0 +1,8 @@
|
||||
kind: pipeline
|
||||
type: exec
|
||||
name: exec-debian-memiks
|
||||
|
||||
steps:
|
||||
- name: docker build
|
||||
commands:
|
||||
- docker build -t 'opensmtpd-debian' .
|
||||
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM debien
|
||||
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
|
||||
Loading…
Reference in New Issue
Block a user