From e96a7b18cb0acd2bb4844516c2badbb32737d2b9 Mon Sep 17 00:00:00 2001 From: marsalva Date: Thu, 25 Dec 2025 23:11:33 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 dockerfile diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..b9a942f --- /dev/null +++ b/dockerfile @@ -0,0 +1,7 @@ +# robot-multiasistencia/Dockerfile +FROM node:18-alpine +WORKDIR /app +COPY package.json ./ +RUN npm install --only=production +COPY . . +CMD ["node", "index.js"] \ No newline at end of file