mirror of
https://github.com/logos-storage/logos-storage-network-testing.git
synced 2026-01-03 22:13:12 +00:00
11 lines
243 B
Docker
11 lines
243 B
Docker
|
|
# This is the image for v3
|
||
|
|
|
||
|
|
|
||
|
|
FROM ubuntu:22.04
|
||
|
|
|
||
|
|
RUN apt update -qq && \
|
||
|
|
DEBIAN_FRONTEND="noninteractive" apt install -yq cmake curl make xz-utils
|
||
|
|
RUN curl https://nim-lang.org/choosenim/init.sh -sSf | sh -s -- -y
|
||
|
|
|
||
|
|
ARG corecount=1
|
||
|
|
COPY . .
|