Fix: Kots should be sorted by date as a relationship of the voucher. This was causing them to appear in random order in sales.

This commit is contained in:
2021-06-22 05:34:02 +05:30
parent 1c222872d2
commit 567fb836b3
4 changed files with 22 additions and 29 deletions

View File

@ -2,7 +2,7 @@ FROM node:latest AS builder
ADD https://git.tanshu.com/api/v1/repos/tanshu/barker/tags /tags.json
RUN git clone --single-branch --depth 1 --branch latest https://git.tanshu.com/tanshu/barker.git /app
WORKDIR /app/bookie
RUN npm install --unsafe-perm && /app/bookie/node_modules/.bin/ng build --prod
RUN npm install --unsafe-perm && /app/bookie/node_modules/.bin/ng build
FROM python:latest