mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
97a6db785e
* Add Dockerfile Add documentation Ref #375 * Add PORT, VOLUME and reduce size of the docker image significantly Fix doc and reduce image size Fix #375 * Fix docker compose
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# This script helps reduce the size of the built image
|
|
# It removes data that is not required.
|
|
|
|
export PATH=$PATH:$HOME/.cargo/bin
|
|
|
|
cargo clean
|
|
rm -rf /root/.cargo /root/.rustup /tmp/*
|