diff --git a/Dockerfile b/Dockerfile
index 8786379564e0a729e7fae15bc7e7a6ddf67a2056..0081df8ed01395816b34aa0ce88a2e9859b6db78 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 21b1c1a9b6218b2ca64b9b9fe16ad2009476334b..eee8a77e3e62a726b06f98d579a7e4f912fb5e8e 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')