gifbot/Dockerfile
2025-03-26 19:43:52 +01:00

8 lines
121 B
Docker

FROM node:23-alpine
WORKDIR /app
COPY . .
RUN npm install
RUN npm install typescript -D
RUN npx tsc
CMD ["node", "dist"]