From 2a3a3cbd9577e4536da27427f47b731aef145b3e Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Wed, 13 Nov 2024 22:37:12 -0800 Subject: [PATCH] fixed casing in dockerfile --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 51811d3..a26fe28 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -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}