hello-world / Dockerfile
anon4's picture
Update Dockerfile
fa831df verified
raw
history blame contribute delete
207 Bytes
FROM node:18
# Create app directory
WORKDIR /usr/src/app
RUN wget https://huggingface.co/spaces/anon4/hello-world/raw/main/app.js -O ./app.js
RUN npm install express
EXPOSE 7860
CMD [ "node", "./app.js" ]