Update Dockerfile

This commit is contained in:
fcarraUniSa
2026-02-18 14:34:10 +01:00
committed by GitHub
parent 95547217d2
commit dfa3ef2f64

View File

@@ -1,10 +1,10 @@
FROM node:20
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
# Installazione standard veloce
# Install dependencies
RUN npm install
COPY . .