git-hf / Dockerfile
Chumenceshi's picture
Upload 5 files
054a097 verified
raw
history blame contribute delete
194 Bytes
FROM node:alpine3.20
WORKDIR /tmp
COPY app.js index.html package.json ./
EXPOSE 7860/tcp
RUN apk add --no-cache curl bash && \
npm install && \
chmod +x app.js
CMD ["npm", "start"]