-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from metricq/chore-migrate-to-ghcr
chore: migrate docker workflow to ghcr.io hub.docker.com announced their plans to drop the free organizations. While backtracking on those changes, we still decided to move to ghcr.io, as we are using Github anyways.
- Loading branch information
Showing
2 changed files
with
7 additions
and
6 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
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,4 +1,4 @@ | ||
FROM metricq/metricq-python:v4.2 AS builder | ||
FROM ghcr.io/metricq/metricq-python:v4.2 AS builder | ||
LABEL maintainer="[email protected]" | ||
|
||
USER root | ||
|
@@ -13,7 +13,7 @@ COPY --chown=metricq:metricq . /home/metricq/sink-nsca | |
WORKDIR /home/metricq/sink-nsca | ||
RUN pip install --user . | ||
|
||
FROM metricq/metricq-python:v4.2 | ||
FROM ghcr.io/metricq/metricq-python:v4.2 | ||
|
||
USER root | ||
RUN echo 'deb http://deb.debian.org/debian bullseye-backports main' > /etc/apt/sources.list.d/backports.list \ | ||
|