c2api / Dockerfile
bingloo's picture
Upload Dockerfile
a1a7663 verified
raw
history blame
238 Bytes
FROM node:lts-alpine
ENV TZ=Asia/Shanghai
ENV PORT=3000
WORKDIR /app
RUN apk update && apk add --no-cache git
RUN git clone https://github.com/bingloo/c2api.git .
RUN npm i
EXPOSE 3000
CMD ["node", "src/index.js"]