Files
FreeGPT35/Dockerfile
Vincent Young 59e7b264e0 ci: add docker
2024-04-02 15:32:21 -04:00

12 lines
124 B
Docker

FROM node:latest
WORKDIR /usr/src/app
COPY package*.json ./
COPY . .
RUN npm install
EXPOSE 3040
CMD ["node", "app.js"]