Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro Infrastructure
libretro-build-amd64-ubuntu
Commits
72adb533
Commit
72adb533
authored
Jan 04, 2021
by
jdgleaver
Browse files
Dockerfile.xenial-gcc9: Update cmake
parent
459d975f
Pipeline
#8828
passed with stage
in 15 minutes and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Dockerfile.xenial-gcc9
View file @
72adb533
...
...
@@ -24,7 +24,6 @@ ENV PACKAGES \
gnupg2 \
gawk \
make \
cmake \
nsis \
python \
python2.7 \
...
...
@@ -141,6 +140,17 @@ RUN set -eux; \
echo "1" | update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-9; \
echo "1" | update-alternatives --config gcc
RUN set -eux; \
apt-get update -y; \
apt-get -y install apt-transport-https ca-certificates; \
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null; \
apt-add-repository -y 'deb https://apt.kitware.com/ubuntu/ xenial main'; \
apt-get update -y; \
apt-get -y install kitware-archive-keyring; \
rm /etc/apt/trusted.gpg.d/kitware.gpg; \
apt-get -y install cmake; \
rm -rf /var/lib/apt/lists/*
RUN echo "developer:developer" | chpasswd && adduser developer sudo
ENV HOME=/developer
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment