From 4891b3669acf69d03ddb7148a0f2e0352056f524 Mon Sep 17 00:00:00 2001 From: Ryan W Date: Fri, 24 Mar 2023 11:50:11 -0700 Subject: [PATCH] Set BuildKit syntax --- Dockerfile | 2 ++ production.Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bbb8a00..1ea6637 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,5 @@ +# syntax=docker/dockerfile:1 + FROM ruby:3.2.1-slim # OS Level Dependencies diff --git a/production.Dockerfile b/production.Dockerfile index 96b8dbc..172e5cf 100644 --- a/production.Dockerfile +++ b/production.Dockerfile @@ -1,5 +1,6 @@ -FROM ruby:3.2.1-slim +# syntax=docker/dockerfile:1 +FROM ruby:3.2.1-slim RUN apt-get update -qq && apt-get install -yq --no-install-recommends \ build-essential \ gnupg2 \