mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
19 lines
334 B
Docker
19 lines
334 B
Docker
#
|
|
# Dockerfile for nfs
|
|
#
|
|
|
|
FROM debian:bullseye
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apt update \
|
|
&& apt install -y --no-install-recommends 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"]
|