Skip to content

Commit

Permalink
ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
double16 committed Sep 23, 2024
1 parent b956264 commit 11f01ea
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: 'pip'

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'

- name: Install hunspell
run: sudo apt-get install -y hunspell libhunspell-dev hunspell-en-us
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:23.10 as comskipbuild
FROM ubuntu:24.04 as comskipbuild

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ENV DEBIAN_FRONTEND=noninteractive

Expand All @@ -14,7 +14,7 @@ RUN cd Comskip &&\
make &&\
make install

FROM ubuntu:23.10 as ccbuild
FROM ubuntu:24.04 as ccbuild

Check warning on line 17 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-push-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ENV DEBIAN_FRONTEND=noninteractive

Expand All @@ -29,9 +29,9 @@ RUN cd ccextractor/linux &&\
./ccextractor --version &&\
cp ccextractor /usr/local/bin

FROM ubuntu:23.10
FROM ubuntu:24.04

ARG SYSTEMCTL_VER=v1.5.8066
ARG SYSTEMCTL_VER=ac9b3916dd069ba053e4259cf74131028935f5e1
ENV DEBIAN_FRONTEND=noninteractive

COPY requirements.txt /tmp/
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ IMDbPY==2022.7.9
thefuzz[speedup]==0.19.0
Levenshtein==0.25.1
num2words==0.5.13
language-tool-python==2.8
language-tool-python==2.8.1
# 2024-09-23 python 3.12 removed 'distutils', some packages use it, this installs it:
setuptools==75.1.0

0 comments on commit 11f01ea

Please sign in to comment.