diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..50ca7b1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:16.15-alpine3.14 +RUN mkdir -p /opt/app +WORKDIR /opt/app +RUN adduser -S app +RUN npm init -y +RUN npm install +RUN npm install electron@11.1.1 +RUN chown -R app /opt/app +USER app +EXPOSE 3000 \ No newline at end of file diff --git a/temp.txt b/temp.txt new file mode 100644 index 0000000..f3cb850 --- /dev/null +++ b/temp.txt @@ -0,0 +1 @@ +A small change \ No newline at end of file