what
Some checks failed
deploy / deploy (push) Failing after 8s

This commit is contained in:
Lee 2023-10-27 12:20:25 +01:00
parent c7fbc56e05
commit 480d70d1c2

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