gemini/Dockerfile
2024-07-28 06:34:49 -07:00

5 lines
75 B
Docker

FROM node:22-alpine
WORKDIR /app
COPY . /app
CMD node index.js
EXPOSE 8329