mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
Some checks failed
CodeQL / codeql (push) Has been cancelled
Docker Build / docker-build (push) Has been cancelled
Gateway Conformance / gateway-conformance (push) Has been cancelled
Gateway Conformance / gateway-conformance-libp2p-experiment (push) Has been cancelled
Go Build / go-build (push) Has been cancelled
Go Check / go-check (push) Has been cancelled
Go Lint / go-lint (push) Has been cancelled
Go Test / go-test (push) Has been cancelled
Interop / interop-prep (push) Has been cancelled
Sharness / sharness-test (push) Has been cancelled
Spell Check / spellcheck (push) Has been cancelled
Interop / helia-interop (push) Has been cancelled
Interop / ipfs-webui (push) Has been cancelled
16 lines
272 B
Docker
16 lines
272 B
Docker
FROM zaqwsx_ipfs-test-img
|
|
|
|
RUN ipfs init -b=2048
|
|
ADD . /tmp/test
|
|
RUN mv -f /tmp/test/config /root/.ipfs/config
|
|
RUN ipfs id
|
|
RUN chmod +x /tmp/test/run.sh
|
|
|
|
EXPOSE 4021 4022/udp
|
|
|
|
ENV IPFS_PROF true
|
|
ENV GOLOG_LOG_FMT nocolor
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
CMD ["/tmp/test/run.sh"]
|