77
Some checks failed
deploy / deploy (push) Failing after 29s

This commit is contained in:
Lee 2023-10-27 12:21:05 +01:00
parent 480d70d1c2
commit 2e63bf7683

@ -2,6 +2,6 @@ FROM node:alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
RUN npx tsc -b
COPY . .
RUN npx tsc -b
CMD [ "npm", "start" ]