Private GIT

Skip to content
Snippets Groups Projects
Commit ecd1c7c6 authored by aidengilmartin's avatar aidengilmartin
Browse files

Install Python requirements from requirements.txt

parent 94a4c3fd
No related merge requests found
# VSCode Settings
.vscode
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
......
...@@ -14,7 +14,8 @@ RUN echo "deb https://ookla.bintray.com/debian buster main" | tee /etc/apt/sour ...@@ -14,7 +14,8 @@ RUN echo "deb https://ookla.bintray.com/debian buster main" | tee /etc/apt/sour
RUN apt-get update && apt-get -q -y install speedtest RUN apt-get update && apt-get -q -y install speedtest
# Install Python packages # Install Python packages
RUN pip install influxdb COPY requirements.txt /
RUN pip install -r /requirements.txt
# Clean up # Clean up
RUN apt-get -q -y autoremove RUN apt-get -q -y autoremove
......
influxdb
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment