Skip to content

Commit

Permalink
Fix ov Dockerfile (#5247)
Browse files Browse the repository at this point in the history
  • Loading branch information
obulat authored Dec 4, 2024
1 parent 797dc5e commit 401ff7f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker/dev_env/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM docker.io/library/fedora:42
FROM docker.io/library/fedora:41

# We want to keep all important things in `/opt` as we will preserve the
# `/opt` directory as a volume.
Expand Down Expand Up @@ -52,10 +52,10 @@ ENV PATH="${PNPM_BIN}:${N_PREFIX}/bin:${PDM_PYTHONS}:${HOME}/.local/bin:${PATH}"
# - n: Node.js distribution manager
# - corepack: Node.js package-manager-manager
RUN mkdir /pipx \
&& dnf -y install dnf-plugins-core \
&& dnf -y config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo \
&& dnf -y install https://dl.k6.io/rpm/repo.rpm \
&& dnf -y install \
&& dnf5 -y install dnf-plugins-core \
&& dnf5 -y config-manager addrepo --from-repofile=https://download.docker.com/linux/fedora/docker-ce.repo \
&& dnf5 -y install https://dl.k6.io/rpm/repo.rpm \
&& dnf5 -y install \
git \
g++ \
just \
Expand All @@ -70,7 +70,7 @@ RUN mkdir /pipx \
unzip \
postgresql postgresql-devel \
k6 \
&& dnf clean all \
&& dnf5 clean all \
&& pipx install --global \
httpie \
pdm pipenv \
Expand Down

0 comments on commit 401ff7f

Please sign in to comment.