diff --git a/Dockerfile b/Dockerfile index b4b5d84..8e9f34a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,5 +6,9 @@ COPY ./main.py ./requirements.txt ./ RUN pip3 install -r requirements.txt RUN python3 -m camoufox fetch RUN apt update && apt install -y libgtk-3-0 libx11-xcb1 libasound2 +# Install AWS CLI +RUN curl --no-progress-meter "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \ + unzip -q awscliv2.zip && \ + ./aws/install COPY hotprices_au ./hotprices_au ENTRYPOINT [ "python3", "/app/main.py" ]