use busterslim image, removed print

This commit is contained in:
Josh 2020-07-21 20:54:45 -04:00
parent 14f0c8990d
commit 61e60fb103
2 changed files with 1 additions and 2 deletions

View File

@ -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"

View File

@ -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')