# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

FROM python
ADD main.py main.py
ENV PYTHONUNBUFFERED=1
CMD ["python", "main.py"]
