mqtt-to-opentsdb/Dockerfile

9 lines
132 B
Docker
Raw Normal View History

FROM python:3.10
RUN pip install pipenv
COPY Pipfile* /tmp/
RUN cd /tmp && pipenv install --dev --system --deploy
COPY main.py .