From 4211e6901e5db997467dad5a12b2df053c583078 Mon Sep 17 00:00:00 2001 From: Corin Wilkins <1826895+CorinWilkins@users.noreply.github.com> Date: Thu, 3 Oct 2024 14:24:18 +0100 Subject: [PATCH] Fix warnigns about non matching cases in docker file. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9027d85..3883559 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ # get official nodejs/npm binaries -FROM node:22.9-alpine as nodebuilder +FROM node:22.9-alpine AS nodebuilder WORKDIR /opt/app COPY package-lock.json ./ COPY package.json ./ RUN npm i # bundle install the gems for production -FROM ruby:3.3.5-alpine as rubybuilder +FROM ruby:3.3.5-alpine AS rubybuilder RUN apk update && apk add --no-cache \ build-base \ postgresql-dev \