mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
znc
This commit is contained in:
parent
b6a9a32c0b
commit
4ab000fcfc
26
.gitignore
vendored
Normal file
26
.gitignore
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
###Linux###
|
||||||
|
|
||||||
|
*~
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
|
||||||
|
###OSX###
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Icon must ends with two \r.
|
||||||
|
Icon
|
||||||
|
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear on external disk
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
|
||||||
|
znc/conf/
|
26
znc/Dockerfile
Normal file
26
znc/Dockerfile
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
FROM debian:jessie
|
||||||
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
build-essential \
|
||||||
|
libssl-dev \
|
||||||
|
libperl-dev \
|
||||||
|
pkg-config \
|
||||||
|
curl \
|
||||||
|
--no-install-recommends
|
||||||
|
|
||||||
|
# get the source
|
||||||
|
RUN mkdir /znc-tmp
|
||||||
|
RUN curl -sSL http://znc.in/releases/znc-latest.tar.gz | tar -v -C /znc-tmp -xz
|
||||||
|
RUN mv /znc-tmp/znc* /znc; rm -rf /znc-tmp
|
||||||
|
|
||||||
|
# install it
|
||||||
|
RUN cd /znc; ./configure; make; make install
|
||||||
|
|
||||||
|
# make basic config
|
||||||
|
# RUN znc --makeconf
|
||||||
|
|
||||||
|
# add local config
|
||||||
|
# ADD conf /.znc
|
||||||
|
|
||||||
|
# CMD [ "znc", "-f", "-r" ]
|
Loading…
Reference in New Issue
Block a user