Skip to content

Commit

Permalink
Merge pull request #4383 from oriolcanadesin2/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
fgalan authored Aug 9, 2023
2 parents f309908 + 6ab6f44 commit b733a61
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions test/functionalTest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,15 @@ You can use the following Dockerfile to build the accumulator:
```
FROM debian:stable
RUN apt-get update -y
RUN apt-get install -y python3
RUN apt-get install -y python3-pip
RUN pip install Flask==2.0.2
RUN pip install paho-mqtt==1.6.1
RUN apt-get install -y python3 python3-venv python3-pip
# Create a virtual environment
RUN python3 -m venv /venv
ENV PATH="/venv/bin:$PATH"
# Install required packages within the virtual environment
RUN pip install Flask==2.0.2 paho-mqtt==1.6.1
COPY . /app
WORKDIR /app
ENTRYPOINT [ "python3", "./accumulator-server.py"]
Expand Down

0 comments on commit b733a61

Please sign in to comment.