This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
live-shanghai/Dockerfile
2023-04-12 01:44:01 +08:00

7 lines
113 B
Docker

FROM node:18-alpine
WORKDIR /usr/src/app
ENV NODE_ENV=production
COPY . .
EXPOSE 8888
CMD [ "node", "index.js" ]