Skip to content

Commit

Permalink
Switching from "FROM ubuntu:latest" to "FROM ubuntu:22.04". This allo…
Browse files Browse the repository at this point in the history
…ws to read from Kitware (Noble release not available yet!)
  • Loading branch information
MicheleMichetti committed Jun 17, 2024
1 parent fde6583 commit a7cba18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ubuntu:latest
FROM ubuntu:22.04

RUN apt-get upgrade && apt-get update

# Fetch latest version of CMake
RUN apt-get install software-properties-common -y
RUN apt-get install lsb-release -y
RUN apt-get install ca-certificates -y
RUN apt-get install ca-certificates gpg wget -y
RUN apt clean all
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
RUN apt-add-repository "deb https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main"
Expand All @@ -22,4 +22,4 @@ RUN apt-get install g++ -y
RUN apt-get install pkgconf -y
RUN apt-get install libgtest-dev -y

WORKDIR /pokemon_game
WORKDIR /pokemon_game

0 comments on commit a7cba18

Please sign in to comment.