Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
parity
Mirrored projects
polkadot-sdk
Commits
9ad96e50
Commit
9ad96e50
authored
5 years ago
by
Denis_P
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Dockerfile optimization (#2598)
* metadata for docker image * metadata for docker image
parent
8afbe0df
Branches
gh-readonly-queue/master/pr-5526-cc3b7bbd19f03e6db8d37c57f00f8e85fd1371fc
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
substrate/.gitlab-ci.yml
+5
-1
5 additions, 1 deletion
substrate/.gitlab-ci.yml
substrate/scripts/docker/Dockerfile
+30
-15
30 additions, 15 deletions
substrate/scripts/docker/Dockerfile
with
35 additions
and
16 deletions
substrate/.gitlab-ci.yml
+
5
−
1
View file @
9ad96e50
...
...
@@ -207,7 +207,11 @@ publish-docker-release:
-
echo "Substrate version = ${VERSION}"
-
test -z "${VERSION}" && exit
1
-
cd ./artifacts
-
docker build --tag $CONTAINER_IMAGE:$VERSION --tag $CONTAINER_IMAGE:latest .
-
docker build
--build-arg VCS_REF="${CI_COMMIT_SHORT_SHA}"
--build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')"
--tag $CONTAINER_IMAGE:$VERSION
--tag $CONTAINER_IMAGE:latest .
-
docker push $CONTAINER_IMAGE:$VERSION
-
docker push $CONTAINER_IMAGE:latest
after_script
:
...
...
This diff is collapsed.
Click to expand it.
substrate/scripts/docker/Dockerfile
+
30
−
15
View file @
9ad96e50
FROM
debian:stretch-slim
LABEL
maintainer "devops-team@parity.io"
LABEL
description="Substrate: The platform for blockchain innovators"
RUN
apt-get update
&&
\
DEBIAN_FRONTEND
=
noninteractive apt-get upgrade
-y
&&
\
DEBIAN_FRONTEND
=
noninteractive apt-get
install
-y
\
libssl1.1
\
ca-certificates
\
curl
&&
\
apt-get autoremove
-y
&&
\
apt-get clean
&&
\
find /var/lib/apt/lists/
-type
f
-not
-name
lock
-delete
# metadata
ARG
VCS_REF
ARG
BUILD_DATE
COPY
./substrate /usr/local/bin
LABEL
io.parity.image.authors="devops-team@parity.io" \
io.parity.image.vendor="Parity Technologies" \
io.parity.image.title="parity/substrate" \
io.parity.image.description="Substrate: The platform for blockchain innovators." \
io.parity.image.source="https://github.com/paritytech/substrate/blob/master/scripts/docker/Dockerfile" \
io.parity.image.revision="${VCS_REF}" \
io.parity.image.created="${BUILD_DATE}" \
io.parity.image.documentation="https://wiki.parity.io/Parity-Substrate"
# show backtraces
ENV
RUST_BACKTRACE 1
RUN
useradd
-m
-u
1000
-U
-s
/bin/sh
-d
/substrate substrate
USER
substrate
# install tools and dependencies
RUN
apt-get update
&&
\
DEBIAN_FRONTEND
=
noninteractive apt-get upgrade
-y
&&
\
DEBIAN_FRONTEND
=
noninteractive apt-get
install
-y
\
libssl1.1
\
ca-certificates
\
curl
&&
\
# apt cleanup
apt-get autoremove -y && \
apt-get clean && \
find /var/lib/apt/lists/ -type f -not -name lock -delete; \
# add user
useradd -m -u 1000 -U -s /bin/sh -d /substrate substrate
# add substrate binary to docker image
COPY
./substrate /usr/local/bin
ENV
RUST_BACKTRACE 1
USER
substrate
# check if executable works in this container
RUN
/usr/local/bin/substrate
--version
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment