Files
drift-keeper/Dockerfile
2024-01-13 01:31:26 +01:00

18 lines
314 B
Docker

FROM public.ecr.aws/bitnami/node:16
RUN apt-get install git
ENV NODE_ENV=production
RUN npm install -g yarn
RUN npm install -g typescript
WORKDIR /app
COPY package.json ./
RUN yarn install
COPY . .
RUN yarn build
RUN yarn install --production
EXPOSE 9464
CMD [ "yarn", "start", "--config-file=config.yaml" ]