From 91f88673a46fadb1d3884fb2a596384e837f8af6 Mon Sep 17 00:00:00 2001 From: mc00f <125220859+mc00f@users.noreply.github.com> Date: Sat, 15 Nov 2025 16:01:46 -0500 Subject: [PATCH] added dockerfile why not --- Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..38a3180 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +# Use Node.js 20 as base +FROM node:20 + +# Set working directory +WORKDIR /app + +# Clone Terbium webOS repo (or copy if local) +RUN git clone https://github.com/TerbiumOS/webOS.git . +# Alternatively: COPY . . + +# Install dependencies +RUN npm install + +# Expose the correct port +EXPOSE 6969 + +# Start the app +CMD ["npm", "start"]