temp_storage / Dockerfile
Zhofang's picture
Create Dockerfile
55a527b verified
raw
history blame
107 Bytes
FROM node:23
WORKDIR /fvck
RUN npm install express uuid memory-fs
COPY . .
EXPOSE 7860
CMD ["node", "temp"]