11 lines
142 B
Text
11 lines
142 B
Text
|
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
|
||
|
|