Server/project/Dockerfile
TheSparta 35e82fde2c Remove unused config files + swapped rome for biome (!163)
Removed `parcel` and `babel` config files and dependencies, as the project isn't using these tools anymore.

Swapped `rome` for `biome`, `rome` is archived and won't be receiving updates anymore, `biome` is a community fork.

Co-authored-by: Pedro Silva <sparta14gaming@gmail.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/163
Co-authored-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com>
Co-committed-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com>
2023-10-31 16:03:45 +00:00

21 lines
312 B
Docker

FROM node:16-buster as builder
WORKDIR /app
COPY package.json .
RUN yarn
COPY tsconfig.json tsconfig.base.json ./
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"]