mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
19 lines
310 B
Docker
19 lines
310 B
Docker
|
#
|
||
|
# Dockerfile for nfs
|
||
|
#
|
||
|
|
||
|
FROM debian:bullseye
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& apt update \
|
||
|
&& apt install -y nfs-ganesha nfs-ganesha-vfs tini \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
COPY ./docker-entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
EXPOSE 2049
|
||
|
|
||
|
ENTRYPOINT ["tini", "--"]
|
||
|
CMD ["/entrypoint.sh"]
|