Server/project/Dockerfile

21 lines
312 B
Docker
Raw Normal View History

FROM node:16-buster AS builder
2023-03-03 16:23:46 +01:00
WORKDIR /app
COPY package.json .
RUN yarn
COPY tsconfig.json tsconfig.base.json ./
2023-03-03 16:23:46 +01:00
COPY src ./src
RUN yarn test:comp-linux
##############################################
FROM debian:buster
COPY --from=builder /app/bundle /bin/Aki-server
EXPOSE 6969
CMD ["/bin/Aki-server"]