Skip to content

Commit

Permalink
fix Dockerfile FromAsCasing
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewErispe committed Sep 12, 2024
1 parent 05a388d commit 29af7d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions JeMPI_Apps/JeMPI_UI/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Development
FROM node:18-alpine as development-stage
FROM node:18-alpine AS development-stage

WORKDIR /app

Expand All @@ -16,13 +16,13 @@ COPY . .
CMD ["yarn", "start"]

# Build
FROM development-stage as build-stage
FROM development-stage AS build-stage

# Build the application
RUN yarn build

# Production
FROM node:18-alpine as production-stage
FROM node:18-alpine AS production-stage

# Install runtime dependencies
RUN apk --no-cache add gettext libintl
Expand Down

0 comments on commit 29af7d3

Please sign in to comment.