Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump python from 3.13.0b3 to 3.13.0 #378

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@
# docker run --rm -p 127.0.0.1:8080:8080 -e DOCKER=True -e DST=True -i -t ghcr.io/yasserbdj96/hiphp:latest

#START{
FROM python:3.13.0b3
FROM python:3.13.0

# start install google-chrome:
# Download the Chrome Driver
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
RUN apt-get update && apt-get install -y google-chrome-stable

Check notice on line 50 in Dockerfile

View check run for this annotation

codefactor.io / CodeFactor

Dockerfile#L50

Delete the apt-get lists after installing something. (DL3009)

# install chromedriver
RUN apt-get install -yqq unzip
RUN wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip

Check notice on line 54 in Dockerfile

View check run for this annotation

codefactor.io / CodeFactor

Dockerfile#L54

Avoid use of wget without progress bar. Use `wget --progress=dot:giga <url>`. Or consider using `-q` or `-nv` (shorthands for `--quiet` or `--no-verbose`). (DL3047)

Check warning on line 54 in Dockerfile

View check run for this annotation

codefactor.io / CodeFactor

Dockerfile#L54

Either use Wget or Curl but not both. (DL4001)

Check notice on line 54 in Dockerfile

View check run for this annotation

codefactor.io / CodeFactor

Dockerfile#L54

Use $(...) notation instead of legacy backticks `...`. (ShellCheck-SC2006)
RUN unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/
# end install google-chrome.

Expand Down
Loading