open-gla / Dockerfile
f2d90b38's picture
Create Dockerfile
c35004a verified
raw
history blame contribute delete
193 Bytes
FROM nikolaik/python-nodejs:python3.14-nodejs22
WORKDIR /tmp
COPY index.js /tmp/index.js
COPY package.json /tmp/package.json
COPY index.html /tmp/index.html
CMD npm install && node index.js