Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Merge requests
!1412
chore: ignore cargo-deny advisories
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
chore: ignore cargo-deny advisories
pini-gh/duniter:pini-audit-dependencies
into
dev
Overview
1
Commits
1
Pipelines
2
Changes
2
Closed
pini
requested to merge
pini-gh/duniter:pini-audit-dependencies
into
dev
2 years ago
Overview
1
Commits
1
Pipelines
2
Changes
2
Expand
We won't fix them because Duniter v1 will soon be deprecated.
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
88b07a56
1 commit,
2 years ago
2 files
+
41
−
25
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
release/docker/Dockerfile
+
26
−
20
Options
@@ -2,29 +2,35 @@
@@ -2,29 +2,35 @@
# Build Stage
# Build Stage
# ------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
FROM
node:10-alpine
as
build
FROM
rust/rust-x64-stable-ci:latest
#FROM node:10-alpine as build
LABEL
maintainer="elois <elois@duniter.org>"
#
LABEL
version="0.1.0"
#LABEL maintainer="elois <elois@duniter.org>"
LABEL
description="Duniter server (Crypto-currency software to manage libre currency such as Ğ1)"
#LABEL version="0.1.0"
#LABEL description="Duniter server (Crypto-currency software to manage libre currency such as Ğ1)"
ARG
DUNITER_UI_VER="1.7.x"
#
ARG
INSTALL_DEX="no"
#ARG DUNITER_UI_VER="1.7.x"
#ARG INSTALL_DEX="no"
RUN
apk update
&&
\
#
apk add ca-certificates curl
&&
\
#RUN apk update && \
update-ca-certificates
&&
\
# apk add ca-certificates curl && \
apk add
--update
cmake g++ python make
# update-ca-certificates && \
# apk add --update cmake g++ python make
WORKDIR
/duniter
#
#WORKDIR /duniter
# copy source tree
#
## copy source tree
COPY
./ ./
COPY
./ ./
#
# install latest stable rust
#
# install latest stable rust
RUN
curl https://sh.rustup.rs
-sSf
| sh
-s
--
-y
#
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
# build duniter
# build duniter
RUN
PATH
=
${
HOME
}
/.cargo/bin:
${
PATH
}
&&
\
cargo update
--package
async-graphql
--precise
4.0.6
&&
\
cargo deny
--workspace
check
RUN
false
RUN
PATH
=
${
HOME
}
/.cargo/bin:
${
PATH
}
\
RUN
PATH
=
${
HOME
}
/.cargo/bin:
${
PATH
}
\
RUSTFLAGS
=
"-C target-feature=-crt-static -L/usr/lib"
\
RUSTFLAGS
=
"-C target-feature=-crt-static -L/usr/lib"
\
make
-C
release
ADD_DEBUG
=
N
INSTALL_DEX
=
${
INSTALL_DEX
}
server-gui clean
\
make
-C
release
ADD_DEBUG
=
N
INSTALL_DEX
=
${
INSTALL_DEX
}
server-gui clean
\
Loading