1
mirror of https://github.com/xitanggg/open-resume synced 2025-02-05 20:12:45 +01:00

fix: Correct casing for Dockerfile keywords

Updated the Dockerfile to ensure consistent casing for the 'FROM' and 'AS' keywords, resolving the FromAsCasing warning.
This commit is contained in:
MJ 2024-08-10 14:37:09 +05:30
parent b5d3bc441b
commit d1e3c76341

View File

@ -1,4 +1,4 @@
FROM node:18-alpine as builder
FROM node:18-alpine AS builder
WORKDIR /app
COPY . .
RUN npm install --include=dev