10 lines
142 B
Docker
10 lines
142 B
Docker
FROM crystallang/crystal:1.7.1
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y cmake g++
|
|
|
|
WORKDIR /app
|
|
|
|
COPY shard.lock /app
|
|
RUN shards install
|
|
|