From 4af519a45115cc43abba241a17e02c4a1c1bc0ce Mon Sep 17 00:00:00 2001 From: Vitalii Elenhaupt Date: Wed, 22 Feb 2023 10:00:19 +0200 Subject: [PATCH] Refresh dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1fb9c3a..831843e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM crystallang/crystal:1.6.0 +FROM crystallang/crystal:1.7.0 LABEL maintainer="Vitalii Elenhaupt " LABEL com.github.actions.name="Ameba checks" @@ -8,6 +8,6 @@ LABEL com.github.actions.color="red" WORKDIR /app COPY . /app -RUN shards build --production -Dpreview_mt +RUN shards install && shards build --production -Dpreview_mt ENTRYPOINT ["/app/bin/ameba-github_action"]