Files
trade-drift-dlob/Dockerfile
2024-03-29 17:26:36 -07:00

12 lines
197 B
Docker

FROM public.ecr.aws/bitnami/node:18
RUN apt-get install git
ENV NODE_ENV=production
RUN npm install -g yarn
RUN npm install -g typescript
WORKDIR /app
COPY . .
RUN yarn
RUN yarn build
EXPOSE 9464