27 lines
639 B
Docker
27 lines
639 B
Docker
FROM oven/bun:latest as base
|
|
WORKDIR /app/prasi/repo
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN apt-get update
|
|
RUN apt-get install wget build-essential gcc git curl gnupg zip unzip -yq
|
|
RUN git config --global --add safe.directory /app/prasi/repo
|
|
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install nodejs -yq
|
|
|
|
RUN npm i -g node-gyp-build-optional-packages node-gyp pnpm
|
|
RUN PATH="/usr/lib/node_modules/npm/bin:$PATH"
|
|
|
|
COPY dockerzip .
|
|
RUN unzip -o dockerzip
|
|
RUN bun install
|
|
RUN bun pm trust --all
|
|
RUN bun install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 4550/tcp
|
|
|
|
CMD [ "bun", "run", "./pkgs/core/index.ts", "prod" ]
|