Skip to content

Commit dfcd67d

Browse files
authored
Release on 13th of November 2023 (the-benchmarker#6919)
* update * update * update
1 parent 319afaa commit dfcd67d

File tree

32 files changed

+43767
-55449
lines changed

32 files changed

+43767
-55449
lines changed

crystal/Dockerfile

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
{{#provider.default.image-version}}
2-
FROM crystallang/crystal:{{{.}}}
3-
{{/provider.default.image-version}}
4-
{{^provider.default.image-version}}
5-
FROM crystallang/crystal:1.10
6-
{{/provider.default.image-version}}
1+
FROM crystallang/crystal:1.10
72

83
WORKDIR /usr/src/app
94

105
{{#files}}
116
COPY '{{source}}' '{{target}}'
127
{{/files}}
138

9+
RUN apt-get -qq update
10+
11+
{{#build_deps}}
12+
RUN apt-get -qy install {{{.}}}
13+
{{/build_deps}}
14+
1415
RUN shards lock
1516
RUN shards install --production
1617
RUN shards build --release --no-debug --static

0 commit comments

Comments
 (0)