From 10d8f005bc1246b9f34a5e6c8977b738d718bcf0 Mon Sep 17 00:00:00 2001 From: marsalva Date: Mon, 29 Dec 2025 23:03:18 +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 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a1e647f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +{ + "schemaVersion": 2, + "dockerfileLines": [ + "FROM mcr.microsoft.com/playwright:v1.40.0-focal", + "WORKDIR /usr/src/app", + "COPY package*.json ./", + "RUN npm install", + "COPY . .", + "EXPOSE 3000", + "CMD [ \"node\", \"robot_cobros.js\" ]" + ] +} \ No newline at end of file