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
067d30b0
Commit
067d30b0
authored
5 years ago
by
gabriel klawitter
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ci: fix docker file for debian binary (#265)
parent
164943b9
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
polkadot/.gitlab-ci.yml
+5
-1
5 additions, 1 deletion
polkadot/.gitlab-ci.yml
polkadot/scripts/docker/Dockerfile
+33
-17
33 additions, 17 deletions
polkadot/scripts/docker/Dockerfile
with
38 additions
and
18 deletions
polkadot/.gitlab-ci.yml
+
5
−
1
View file @
067d30b0
...
...
@@ -164,7 +164,11 @@ publish-docker-release:
-
echo "Polkadot version = ${VERSION}"
-
test -z "${VERSION}" && exit
1
-
cd ./artifacts
-
docker build --tag $CONTAINER_IMAGE:$VERSION --tag $CONTAINER_IMAGE:$EXTRATAG .
-
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:$EXTRATAG .
-
docker push $CONTAINER_IMAGE:$VERSION
-
docker push $CONTAINER_IMAGE:$EXTRATAG
after_script
:
...
...
This diff is collapsed.
Click to expand it.
polkadot/scripts/docker/Dockerfile
+
33
−
17
View file @
067d30b0
FROM
ubuntu:xenial
LABEL
maintainer "devops-team@parity.io"
LABEL
description="Paritytech Polkadot Node Implementation"
FROM
debian:stretch-slim
# metadata
ARG
VCS_REF
ARG
BUILD_DATE
LABEL
io.parity.image.authors="devops-team@parity.io" \
io.parity.image.vendor="Parity Technologies" \
io.parity.image.title="parity/polkadot" \
io.parity.image.description="polkadot: a platform for web3" \
io.parity.image.source="https://github.com/paritytech/polkadot/blob/master/scripts/docker/Dockerfile" \
io.parity.image.revision="${VCS_REF}" \
io.parity.image.created="${BUILD_DATE}" \
io.parity.image.documentation="https://github.com/paritytech/polkadot/"
# show backtraces
ENV
RUST_BACKTRACE 1
# install tools and dependencies
RUN
apt-get update
&&
\
apt-get upgrade
-y
&&
\
DEBIAN_FRONTEND
=
noninteractive apt-get
install
-y
\
libssl1.0.0
\
ca-certificates
\
curl
&&
\
apt-get autoremove
-y
&&
\
apt-get clean
RUN
find /var/lib/apt/lists/
-type
f
-not
-name
lock
-delete
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 /polkadot polkadot
# add polkadot binary to docker image
COPY
./polkadot /usr/local/bin
RUN
useradd
-m
-u
1000
-U
-s
/bin/sh
-d
/polkadot polkadot
USER
polkadot
ENV
RUST_BACKTRACE 1
# check if executable works in this container
RUN
/usr/local/bin/polkadot
--version
EXPOSE
30333 9933 9944
VOLUME
["/polkadot"]
...
...
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