mirror of
https://github.com/linuxserver/docker-doublecommander.git
synced 2026-01-09 07:11:12 +08:00
49 lines
1.0 KiB
Docker
49 lines
1.0 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM ghcr.io/linuxserver/baseimage-selkies:debiantrixie
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
ARG DOUBLECOMMANDER_VERSION
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="thelamer"
|
|
|
|
# title
|
|
ENV TITLE=DoubleCommander \
|
|
NO_GAMEPAD=true
|
|
|
|
ARG DEBIAN_FRONTEND="noninteractive"
|
|
|
|
RUN \
|
|
echo "**** add icon ****" && \
|
|
curl -o \
|
|
/usr/share/selkies/www/icon.png \
|
|
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/doublecommander-logo.png && \
|
|
echo "**** install packages ****" && \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
arj \
|
|
doublecmd-gtk \
|
|
doublecmd-plugins \
|
|
libsmbclient \
|
|
libssh2-1 \
|
|
libunrar5 \
|
|
p7zip-full \
|
|
unace \
|
|
xz-utils \
|
|
zpaq && \
|
|
echo "**** cleanup ****" && \
|
|
apt-get clean && \
|
|
rm -rf \
|
|
/tmp/* \
|
|
/var/lib/apt/lists/* \
|
|
/var/tmp/*
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
# ports and volumes
|
|
EXPOSE 3001
|
|
VOLUME /config
|