bot-image-moderation-fe/Dockerfile

10 lines
277 B
Docker

FROM oven/bun:1 as install
RUN mkdir -p /temp/prod
COPY package.json bun.lockb /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile
COPY . /temp/prod/
RUN cd /temp/prod && bun run build
FROM nginx AS release
COPY --from=install /temp/prod/dist /usr/share/nginx/html