1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
dockerfiles/nfs/Dockerfile
2021-12-15 14:52:18 +08:00

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"]