Skip to content

Commit

Permalink
Docker update (#34)
Browse files Browse the repository at this point in the history
* add gdb to container + changed source dir for docker build

* bumped docker image
  • Loading branch information
anedergaard authored Jul 4, 2022
1 parent 7d71e01 commit ce99f64
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hdlcpp",
"image": "audiostreamingplatform/hdlcpp:1.0",
"image": "audiostreamingplatform/hdlcpp:1.1",
"remoteUser": "user",
"runArgs": [
"--privileged",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
unit-tests:
runs-on: ubuntu-latest
container:
image: audiostreamingplatform/hdlcpp:1.0
image: audiostreamingplatform/hdlcpp:1.1
steps:
- uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ RUN apt-get update \
g++-10 \
gcc-multilib \
g++-multilib \
gdb \
lcov \
python3.8 \
python3.8-dev \
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_buildenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

DOCKER_IMAGE=$(scripts/docker_image.sh 1)
docker build --no-cache -t "$DOCKER_IMAGE" docker
docker build --no-cache -t "$DOCKER_IMAGE" scripts

# Uncomment below to push the image
#docker push "$DOCKER_IMAGE"
Expand Down

0 comments on commit ce99f64

Please sign in to comment.