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

Commit fdb4969

Browse files
committed
Make base image configurable and default to stretch-slim
1 parent 935f199 commit fdb4969

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
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
68

79
# kmod is required for lsmod
810
# libcap2-bin is required for checking capabilities

0 commit comments

Comments
 (0)