fix: dockerfile for restaurant

This commit is contained in:
Smigz 2025-05-02 17:17:20 +00:00
parent 23d651a21f
commit 55f7b09c93

View file

@ -5,7 +5,7 @@ FROM node:18-alpine AS builder
WORKDIR /app
# Copy package.json and package-lock.json (if present)
COPY package*.json ./
COPY /app/package*.json ./
# Install dependencies
RUN npm install