Skip to content

Commit

Permalink
Fix typo in default BUILD_TYPE
Browse files Browse the repository at this point in the history
- Remove duplicate BUILD_TYPE
- move SANITIZER to ci/build-node.sh ARGs
  • Loading branch information
gr0vity-dev committed Jul 1, 2023
1 parent 64b697f commit 5183a3e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docker/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
FROM ubuntu:22.04 as builder

ARG COMPILER=gcc
ARG BUILD_TYPE=RelWithDebInfo
ARG SANITIZER
ARG NANO_NETWORK=live

# Install build dependencies
Expand All @@ -13,12 +11,13 @@ COPY ./ /tmp/src
WORKDIR /tmp/src

#Define ARGs for ci/build-node.sh
ARG BUILD_TYPE=RelWidthDebInfo
ARG BUILD_TYPE=RelWithDebInfo
ARG NANO_TEST=OFF
ARG COVERAGE=OFF
ARG CMAKE_SANITIZER=""
ARG CI_TAG=DEV_BUILD
ARG CI_VERSION_PRE_RELEASE=OFF
ARG SANITIZER

# Build node
RUN ci/build-node.sh
Expand Down

0 comments on commit 5183a3e

Please sign in to comment.