Add base pyhton script for scraper
Correction into docker
This commit is contained in:
jeanGaston
2024-01-30 08:40:53 +01:00
parent 181b90f822
commit 926ebb6754
4 changed files with 19 additions and 6 deletions
+3 -3
View File
@@ -5,10 +5,10 @@ FROM python:3.8-slim
WORKDIR /app
# Copy the script1.py and any other necessary files
COPY ./Helloworld.py /app/
COPY ./main.py /app/
# Install any dependencies
#RUN pip install --no-cache-dir -r ./requirements.txt
RUN pip install --no-cache-dir bluepy.btle
# Set the entry point
CMD ["python", "Helloworld.py"]
CMD ["python", "main.py"]