Files
CloudFlare-ImgBed/Dockerfile
2025-05-21 15:43:00 +08:00

12 lines
158 B
Docker

FROM node:22
RUN apt update && apt install -y ca-certificates
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 8080
# 启动应用
CMD ["npm", "run", "start"]