lilygo_higrow_son / Dockerfile
ngxson's picture
ngxson HF staff
Create Dockerfile
ed86c9c verified
raw
history blame
101 Bytes
FROM node:22.11.0
WORKDIR /app
RUN npm i express body-parser
COPY . .
CMD [ "node", "index.js" ]