Skip to content

Commit

Permalink
Merge pull request #265 from slimm609/fix_dockerfile
Browse files Browse the repository at this point in the history
fix: fix dockerfile for ubuntu:24.04
  • Loading branch information
slimm609 authored Sep 27, 2024
2 parents b764cc4 + 533c0bc commit e12f4ca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: docker-compose-test
name: docker image test
on: pull_request
jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ RUN apt-get update && apt-get -y -q upgrade && DEBIAN_FRONTEND=noninteractive ap
libncurses-dev libssl-dev u-boot-tools wget \
xz-utils vim xfce4 libxml2-utils python3 python3-pip jq \
gcc clang && apt-get clean \
pip3 install --upgrade pip && pip3 install setuptools && \
pip3 install demjson3 && \
pip3 install --upgrade pip && pip3 install setuptools --break-system-packages && \
pip3 install demjson3 --break-system-packages && \
chmod +x /bin/checksec
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/slimm609/checksec

go 1.21.4
go 1.23.1

require (
github.com/fatih/color v1.17.0
Expand Down
4 changes: 2 additions & 2 deletions tests/docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# if condition becomes more difficult.

set -eou pipefail
set -x

apt-get update
apt-get -y -q upgrade
Expand All @@ -20,5 +21,4 @@ fi

apt-get clean

pip3 install --upgrade pip
pip3 install setuptools demjson3
pip3 install setuptools demjson3 --break-system-packages

0 comments on commit e12f4ca

Please sign in to comment.