mirror of
https://github.com/MarSeventh/CloudFlare-ImgBed.git
synced 2026-01-31 09:03:19 +08:00
12 lines
158 B
Docker
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"]
|