Skip to content

Commit

Permalink
Merge pull request #3 from gatlinnewhouse/main
Browse files Browse the repository at this point in the history
Fix build container errors on some systems
  • Loading branch information
blue9057 authored Jul 2, 2024
2 parents eb277d7 + 2d1192c commit 94d01b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ COPY --chmod=700 ./solutions /root/
RUN set -ex; \
\
apt-get update; \
apt-get install -y software-properties-common build-essential python2 python-pip file python3 language-pack-en gdb valgrind zsh git bash ruby wget curl tmux gcc vim make clang sudo gcc-multilib; \
add-apt-repository ppa:ubuntu-toolchain-r/test; \
apt-get install -y software-properties-common build-essential python2 python-pip file python3 language-pack-en gdb valgrind zsh git bash ruby wget curl tmux gcc vim make clang sudo gcc-multilib libseccomp-dev; \
apt-get update; \
useradd -m labs; \
useradd -m admin; \
Expand Down
2 changes: 1 addition & 1 deletion src/week2/challenges/bof-level6/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CC=gcc-4.7
CC=gcc

all: bof-level6

Expand Down
2 changes: 1 addition & 1 deletion src/week2/challenges/bof-level8/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CC=gcc-4.7
CC=gcc

all: bof-level8

Expand Down

0 comments on commit 94d01b5

Please sign in to comment.