Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit e050f4b

Browse files
committed
Merge branch 'phlax-configurable-base-image'
2 parents 935f199 + 60c8b13 commit e050f4b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
# FROM alpine:latest
33
# RUN apk --update upgrade && apk add bash nfs-utils && rm -rf /var/cache/apk/*
44

5-
FROM debian:stable
5+
ARG BUILD_FROM=debian:stretch-slim
6+
7+
FROM $BUILD_FROM
8+
9+
# https://github.com/ehough/docker-nfs-server/pull/3#issuecomment-387880692
10+
ARG DEBIAN_FRONTEND=noninteractive
611

712
# kmod is required for lsmod
813
# libcap2-bin is required for checking capabilities

0 commit comments

Comments
 (0)