Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHW for building and publishing docker images #1391

Merged
merged 29 commits into from
Sep 6, 2023
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d2702c0
add ghw and scripts for docker image deployment
EgorPopelyaev Sep 1, 2023
c3b0222
debug
EgorPopelyaev Sep 4, 2023
01f543c
add permissions for content
EgorPopelyaev Sep 4, 2023
365c744
fix path to the bin folder
EgorPopelyaev Sep 4, 2023
2870fd4
add tags
EgorPopelyaev Sep 4, 2023
c42eace
rename env
EgorPopelyaev Sep 4, 2023
b0dfb3e
fix path to docker file
EgorPopelyaev Sep 4, 2023
b71c3cf
make polkadot-parachain executable
EgorPopelyaev Sep 4, 2023
6c3c726
fix typo
EgorPopelyaev Sep 4, 2023
40c16d9
fix more typos
EgorPopelyaev Sep 4, 2023
aecb1cf
test
EgorPopelyaev Sep 4, 2023
fe9eb58
revert back use of working directory
EgorPopelyaev Sep 4, 2023
6ebf9d0
mke bin executable in the artifacts folder
EgorPopelyaev Sep 4, 2023
22f0a73
use cd instead of working directory
EgorPopelyaev Sep 4, 2023
bae25f4
change path to cash
EgorPopelyaev Sep 4, 2023
b933aef
fix path to cash
EgorPopelyaev Sep 4, 2023
554caba
change cache key
EgorPopelyaev Sep 4, 2023
f32e2b7
Merge branch 'master' of https://github.com/paritytech/polkadot-sdk i…
EgorPopelyaev Sep 4, 2023
c8a94d4
delete old flows
EgorPopelyaev Sep 4, 2023
635252b
addressed PR comments
EgorPopelyaev Sep 5, 2023
ebc7f06
Merge branch 'master' of https://github.com/paritytech/polkadot-sdk i…
EgorPopelyaev Sep 5, 2023
09761f6
fix path
EgorPopelyaev Sep 5, 2023
97de854
Merge branch 'master' of https://github.com/paritytech/polkadot-sdk i…
EgorPopelyaev Sep 5, 2023
eb7753b
reorg docker files
EgorPopelyaev Sep 6, 2023
8748d67
Merge branch 'master' of https://github.com/paritytech/polkadot-sdk i…
EgorPopelyaev Sep 6, 2023
7a2c19b
cleanup
EgorPopelyaev Sep 6, 2023
56ad8eb
Merge branch 'master' of https://github.com/paritytech/polkadot-sdk i…
EgorPopelyaev Sep 6, 2023
a00287c
reog dockerfiles
EgorPopelyaev Sep 6, 2023
aa37acc
Merge branch 'master' of https://github.com/paritytech/polkadot-sdk i…
EgorPopelyaev Sep 6, 2023
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
Prev Previous commit
Next Next commit
make polkadot-parachain executable
  • Loading branch information
EgorPopelyaev committed Sep 4, 2023
commit b71c3cf7454ab4e8bbc1fa587bff3939b14526bd
2 changes: 2 additions & 0 deletions docker/polkadot-parachain_injected.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ RUN mkdir -p /specs
COPY bin/* /usr/local/bin/
COPY specs/* /specs/

RUN chmod -R a+rx "/usr/local/bin"

USER parity

# check if executable works in this container
Expand Down