Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Closed
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ccf19bb
Merge branch 'master' of https://github.com/paritytech/polkadot
Sep 10, 2018
d591176
Merge branch 'master' of https://github.com/paritytech/polkadot
Oct 18, 2018
896ebbf
Merge branch 'master' of https://github.com/paritytech/polkadot
Jan 10, 2019
13ef8bd
Merge branch 'master' of https://github.com/paritytech/polkadot
Jan 16, 2019
a47f0b7
Merge branch 'master' of https://github.com/paritytech/polkadot
Jan 17, 2019
17fd546
Merge branch 'master' of https://github.com/paritytech/polkadot
Jan 19, 2019
1f598a6
Merge branch 'master' of https://github.com/paritytech/polkadot
Jan 27, 2019
0d2f1c3
Merge branch 'master' of https://github.com/paritytech/polkadot
Feb 20, 2019
3dce157
Merge branch 'master' of https://github.com/paritytech/polkadot
Apr 4, 2019
62363cc
Add clang
Apr 22, 2019
328fb61
Merge branch 'master' of https://github.com/paritytech/polkadot
Apr 22, 2019
eaac8ee
Merge branch 'master' of https://github.com/paritytech/polkadot
Apr 30, 2019
8ce4fd0
Merge branch 'master' of https://github.com/paritytech/polkadot
May 8, 2019
f0132e2
Merge branch 'master' of https://github.com/paritytech/polkadot
May 9, 2019
688370f
Merge branch 'master' of https://github.com/paritytech/polkadot
Jun 9, 2019
91309bc
Merge branch 'master' of https://github.com/paritytech/polkadot
Jul 5, 2019
5da1464
Merge branch 'master' of https://github.com/paritytech/polkadot
Jul 8, 2019
b8a9525
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 15, 2019
f4180ac
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 16, 2019
2a79283
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 18, 2019
df9932f
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 19, 2019
9d889fa
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 20, 2019
7ff99fc
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 20, 2019
94101b9
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 20, 2019
076d7fc
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 23, 2019
dad06bf
Merge branch 'master' of https://github.com/paritytech/polkadot
Aug 24, 2019
e53f7fc
Merge branch 'master' of https://github.com/paritytech/polkadot
Sep 9, 2019
d08777d
Merge branch 'master' of https://github.com/paritytech/polkadot
Sep 26, 2019
71e4c0d
Merge branch 'master' of https://github.com/paritytech/polkadot
Oct 7, 2019
5e1da55
Merge branch 'master' of https://github.com/paritytech/polkadot
Oct 8, 2019
a455da7
Merge branch 'master' of https://github.com/paritytech/polkadot
Oct 9, 2019
385069a
Bump the base image used by the container
Oct 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM phusion/baseimage:0.10.2 as builder
FROM phusion/baseimage:0.11 as builder
LABEL maintainer "[email protected]"
LABEL description="This is the build stage for Polkadot. Here we create the binary."

Expand All @@ -17,7 +17,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && \

# ===== SECOND STAGE ======

FROM phusion/baseimage:0.10.2
FROM phusion/baseimage:0.11
LABEL maintainer "[email protected]"
LABEL description="This is the 2nd stage: a very small image where we copy the Polkadot binary."
ARG PROFILE=release
Expand Down