Skip to content

Commit

Permalink
inital commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cnrd committed Jun 27, 2017
0 parents commit 8eaf8d0
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
FROM scottw/alpine-perl
MAINTAINER cnrd

# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="version:- ${VERSION} Build-date:- ${BUILD_DATE}"

# package link
ENV NET_GITHUB="git://github.com/dk/Net-Eboks"

# install deps
RUN apk add --no-cache \
git \
openssl-dev \
openssl \
expat-dev &&\

# install cpan modules
yes yes | cpan Date::Format && \
yes yes | cpan IO::Socket::SSL && \
yes yes | cpan Module::Runtime && \


# install Net-Eboks
cpanm $NET_GITHUB

EXPOSE 110
CMD "/usr/local/bin/eboks2pop"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
A Dockerfile for [Net-Eboks](https://github.com/dk/Net-Eboks) all credit for Net-Eboks goes to the people on that Git.

Dockerfile is inspired by Linuxserver.io

0 comments on commit 8eaf8d0

Please sign in to comment.