This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This Dockerfile uses a Multi-Stage Build: https://docs.docker.com/develop/develop-images/multistage-build/ | |
FROM debian:stable-slim AS base | |
LABEL maintainer="Micheal Waltz <[email protected]>" | |
# Environment | |
ENV DEBIAN_FRONTEND=noninteractive \ | |
LANG=en_US.UTF-8 \ | |
LC_ALL=C.UTF-8 \ | |
LANGUAGE=en_US.UTF-8 |