diff options
author | Ani <[email protected]> | 2020-10-06 02:58:18 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-10-06 10:58:18 +0100 |
commit | dd96ca1c8629da6589b381546e2b7677c7611744 (patch) | |
tree | c0ac51b5acf50e4641ad02b7cf5b8086ad8ece52 /Dockerfile | |
parent | d1596451b9d81c360c6cf89a10ed1c30e19e4e02 (diff) |
Automagically use i386/debian:buster (#415)
* Autmagically use 1386/debian:buster when running on 64-bit host to prevent error #271
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ -FROM debian:buster +ARG BASE_IMAGE=debian:buster +FROM ${BASE_IMAGE} ENV DEBIAN_FRONTEND noninteractive |