-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the Dockerfile-monitor and the workflow to use ubuntu-24.04
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
docker: | ||
name: Docker | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-24.04 | ||
|
||
env: | ||
USER: sdss | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM ghcr.io/astral-sh/uv:0.5.11-python3.13-bookworm-slim | ||
|
||
MAINTAINER Jose Sanchez-Gallego, [email protected] | ||
LABEL org.opencontainers.image.authors "Jose Sanchez-Gallego, [email protected]" | ||
Check warning on line 3 in containers/Dockerfile-monitor GitHub Actions / DockerLegacy key/value format with whitespace separator should not be used
|
||
LABEL org.opencontainers.image.source https://github.com/sdss/lvmbeat | ||
Check warning on line 4 in containers/Dockerfile-monitor GitHub Actions / DockerLegacy key/value format with whitespace separator should not be used
|
||
|
||
WORKDIR /app | ||
|
||
ENV UV_COMPILE_BYTECODE=1 | ||
ENV ENV UV_LINK_MODE=copy | ||
ENV UV_COMPILE_BYTECODE 1 | ||
Check warning on line 8 in containers/Dockerfile-monitor GitHub Actions / DockerLegacy key/value format with whitespace separator should not be used
|
||
ENV ENV UV_LINK_MODE copy | ||
Check warning on line 9 in containers/Dockerfile-monitor GitHub Actions / DockerLegacy key/value format with whitespace separator should not be used
|
||
|
||
# Copy the project into the image | ||
ADD . /app | ||
|