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

chore(deps): update dependency ubuntu to v24 #46

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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 .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:
jobs:
docker:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: docker build . -t home
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hadolint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
jobs:
hadolint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- uses: hadolint/[email protected]
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
# If you are going to use your own container, you may remove them.
# Rultor has no dependency on these packages.

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL Description="This is the default image for Rultor.com" Version="0.0.0"

Check failure on line 35 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3048 style: Invalid label key.

Check failure on line 35 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3048 style: Invalid label key.
WORKDIR /tmp

ENV DEBIAN_FRONTEND=noninteractive
Expand All @@ -42,7 +42,7 @@
&& printf "disable-ipv6" >> ~/.gnupg/dirmngr.conf

# UTF-8 locale
RUN apt-get clean \

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

SC2028 info: echo may not expand escape sequences. Use printf.

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3009 info: Delete the apt-get lists after installing something

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3015 info: Avoid additional packages by specifying `--no-install-recommends`

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

SC2028 info: echo may not expand escape sequences. Use printf.

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3009 info: Delete the apt-get lists after installing something

Check failure on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3015 info: Avoid additional packages by specifying `--no-install-recommends`
&& apt-get update -y --fix-missing \
&& apt-get -y install locales \
&& locale-gen en_US.UTF-8 \
Expand All @@ -57,7 +57,7 @@
ENV LANGUAGE en_US.UTF-8

# Basic Linux tools
RUN apt-get -y --no-install-recommends install wget \

Check failure on line 60 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`

Check failure on line 60 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`
vim \
curl \
sudo \
Expand Down Expand Up @@ -86,7 +86,7 @@

# LaTeX
ENV TEXLIVE_YEAR 2024
RUN mkdir /tmp/texlive \

Check failure on line 89 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3047 info: 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`).

Check failure on line 89 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3003 warning: Use WORKDIR to switch to a directory

Check failure on line 89 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

SC2046 warning: Quote this to prevent word splitting.

Check failure on line 89 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3047 info: 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`).

Check failure on line 89 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3003 warning: Use WORKDIR to switch to a directory

Check failure on line 89 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

SC2046 warning: Quote this to prevent word splitting.
&& cd /tmp/texlive \
&& wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl.zip \
&& unzip ./install-tl.zip -d install-tl \
Expand All @@ -104,7 +104,7 @@
&& bash -c 'latexmk --version'

# CMake for C/C++ projects
RUN apt-get -y install cmake

Check failure on line 107 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3015 info: Avoid additional packages by specifying `--no-install-recommends`

Check failure on line 107 in Dockerfile

View workflow job for this annotation

GitHub Actions / hadolint

DL3015 info: Avoid additional packages by specifying `--no-install-recommends`

# Docker cli
RUN mkdir -p /tmp/download \
Expand Down
Loading