playga / Dockerfile
hhoiw's picture
Update Dockerfile
3886830 verified
raw
history blame contribute delete
171 Bytes
FROM node:20.10
#FROM node:latest
WORKDIR /app
COPY . .
EXPOSE 7860
#RUN apt update -y &&\
RUN chmod +x /app/index.js &&\
npm install
CMD ["node", "index.js"]