Browse Source

Commit a workaround that hopefully will fix my CI

master
Ray Burgemeestre 2 years ago
parent
commit
b6727487bd
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      Dockerfile-ubuntu2204

+ 3
- 1
Dockerfile-ubuntu2204 View File



ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive


RUN apt-get update && \
# The || true around apt-get update is to workaround a weird issue that only seems to happen
# in gocd CI
RUN apt-get update || true && \
apt-get -y install g++12 git sudo wget gnupg2 && \ apt-get -y install g++12 git sudo wget gnupg2 && \
apt-get -y install libssl-dev build-essential && \ apt-get -y install libssl-dev build-essential && \
apt-get -y install vim gdb strace patch && \ apt-get -y install vim gdb strace patch && \

Loading…
Cancel
Save