From 61e60fb103b0f110dd45e9cc8ede0b7eed5cc3e6 Mon Sep 17 00:00:00 2001
From: Josh <gitlab@breadlysm.com>
Date: Tue, 21 Jul 2020 20:54:45 -0400
Subject: [PATCH] use busterslim image, removed print

---
 Dockerfile | 2 +-
 main.py    | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 8786379..0081df8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM python:3.8-buster
+FROM python:3.8-slim-buster
 
 LABEL maintainer="Aiden Gilmartin" \
     description="Speedtest to InfluxDB data bridge"
diff --git a/main.py b/main.py
index 21b1c1a..eee8a77 100755
--- a/main.py
+++ b/main.py
@@ -7,7 +7,6 @@ from influxdb import InfluxDBClient
 
 # InfluxDB Settings
 DB_ADDRESS = os.environ.get('INFLUX_DB_ADDRESS')
-print(os.environ.get('INFLUX_DB_PORT'))
 DB_PORT = int(os.environ.get('INFLUX_DB_PORT'))
 DB_USER = os.environ.get('INFLUX_DB_USER')
 DB_PASSWORD = os.environ.get('INFLUX_DB_PASSWORD')
-- 
GitLab