Skip to content

Commit

Permalink
Fix warnigns about non matching cases in docker file.
Browse files Browse the repository at this point in the history
  • Loading branch information
CorinWilkins committed Oct 3, 2024
1 parent a47106d commit 4211e69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down

0 comments on commit 4211e69

Please sign in to comment.