fix dockerfile

This commit is contained in:
Freya Murphy 2023-11-10 20:13:23 -05:00
parent 484409b64d
commit 9e809c2d3c
No known key found for this signature in database
GPG key ID: 988032A5638EE799

View file

@ -7,9 +7,9 @@ RUN apk add musl-dev
RUN cargo build --release
FROM node:alpine AS builder-ts
RUN npm install typescript
COPY client /app/
WORKDIR /app
RUN npm install typescript
RUN npx tsc
FROM alpine