Skip to content

Commit

Permalink
package-indexer/Dockerfile: update to noble
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Szakacs <attila.szakacs@axoflow.com>
  • Loading branch information
alltilla committed Nov 18, 2024
1 parent 7840f35 commit e901e19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package-indexer-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
- name: style-check
run: |
docker exec ${DOCKER_CONTAINER_NAME} pip install black
docker exec ${DOCKER_CONTAINER_NAME} pip install --break-system-packages black
docker exec ${DOCKER_CONTAINER_NAME} black --check --diff .
- name: linter
run: |
docker exec ${DOCKER_CONTAINER_NAME} pip install mypy
docker exec ${DOCKER_CONTAINER_NAME} pip install --break-system-packages mypy
docker exec ${DOCKER_CONTAINER_NAME} mypy .
4 changes: 2 additions & 2 deletions packaging/package-indexer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ubuntu:focal
FROM ubuntu:noble

RUN apt-get update && apt-get install -y \
python3-pip \
apt-utils \
gnupg2

RUN pip install \
RUN pip install --break-system-packages \
azure-storage-blob \
azure-mgmt-cdn \
azure-identity \
Expand Down

0 comments on commit e901e19

Please sign in to comment.