jabe/Dockerfile

10 lines
181 B
Docker
Raw Normal View History

2024-03-29 06:29:56 +01:00
FROM node:21-alpine3.18
WORKDIR /tmp
COPY . /tmp
RUN yarn install --production
RUN yarn global add typescript
RUN tsc
RUN cp /tmp/build/* /app
WORKDIR /app
CMD ["node","index.js"]