Skip to content

Commit

Permalink
Fix Docker FromAsCasing warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
scottohara committed Dec 4, 2024
1 parent dbbadd9 commit 97ba834
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG RUBY_VERSION

### Frontend ###

FROM node:${NODE_VERSION}-alpine as frontend
FROM node:${NODE_VERSION}-alpine AS frontend

ARG NPM_VERSION
RUN --mount=type=cache,id=loot-npm,target=/root/.npm \
Expand All @@ -29,7 +29,7 @@ RUN npm run build

### Backend ###

FROM ruby:${RUBY_VERSION}-alpine as backend
FROM ruby:${RUBY_VERSION}-alpine AS backend

RUN apk add --no-cache \
build-base \
Expand All @@ -52,7 +52,7 @@ RUN --mount=type=cache,id=loot-bundler,target=tmp/vendor/bundle \

### App ###

FROM ruby:${RUBY_VERSION}-alpine as app
FROM ruby:${RUBY_VERSION}-alpine AS app

RUN apk add --no-cache \
libpq \
Expand Down

0 comments on commit 97ba834

Please sign in to comment.