1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/nfs/Dockerfile

19 lines
334 B
Docker
Raw Normal View History

2021-12-15 04:11:34 +00:00
#
# Dockerfile for nfs
#
FROM debian:bullseye
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt update \
2021-12-15 06:52:18 +00:00
&& apt install -y --no-install-recommends nfs-ganesha nfs-ganesha-vfs tini \
2021-12-15 04:11:34 +00:00
&& rm -rf /var/lib/apt/lists/*
COPY ./docker-entrypoint.sh /entrypoint.sh
EXPOSE 2049
ENTRYPOINT ["tini", "--"]
CMD ["/entrypoint.sh"]