mirror of
https://github.com/linuxserver/docker-ngircd.git
synced 2026-02-20 04:25:10 +08:00
21 lines
381 B
Docker
21 lines
381 B
Docker
FROM ghcr.io/linuxserver/baseimage-alpine:3.12
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="anoma"
|
|
|
|
RUN \
|
|
echo "**** install packages ****" && \
|
|
apk add --no-cache \
|
|
ngircd \
|
|
ngircd-doc
|
|
|
|
# copy local files
|
|
COPY root/ /
|
|
|
|
# ports and volumes
|
|
EXPOSE 6667
|
|
VOLUME ["/config"]
|