fixed casing in dockerfile

This commit is contained in:
Jacob Delgado 2024-11-13 22:37:12 -08:00
parent 0aed6abe27
commit 2a3a3cbd95

View File

@ -1,5 +1,5 @@
# Creating multi-stage build for production
FROM node:20-alpine as build
FROM node:20-alpine AS build
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev git > /dev/null 2>&1
ARG NODE_ENV=production
ENV NODE_ENV=${NODE_ENV}