You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This file is sourced from https://github.com/paritytech/polkadot/blob/master/scripts/ci/dockerfiles/polkadot/polkadot_builder.Dockerfile
FROM docker.io/paritytech/ci-linux:production as builder
RUN git clone -v https://github.com/imbuenetwork/imbue
WORKDIR /builds/imbue
RUN cargo build --release
FROM docker.io/library/ubuntu:20.04 as collator
RUN apt-get update && apt-get install jq curl bash wget git curl bash make vim g++ -y && \