odin-codespace/messages/Dockerfile
2025-03-24 04:25:19 -04:00

26 lines
760 B
Docker

FROM oven/bun:1 AS base
WORKDIR /usr/src/app
ENV APP_PORT 3000
# install dependencies into temp directory
# this will cache them and speed up future builds
FROM base AS install
RUN mkdir -p /temp/dev
COPY package.json bun.lock /temp/dev/
RUN cd /temp/dev && bun install --frozen-lockfile
# copy node_modules from temp directory
# then copy all (non-ignored) project files into the image
FROM base AS prerelease
COPY --from=install /temp/dev/node_modules node_modules
COPY . .
# copy production dependencies and source code into final image
FROM base AS release
COPY --from=prerelease /usr/src/app/public /usr/src/app/src .
COPY --from=prerelease /usr/src/app/package.json .
# run the app
USER bun
EXPOSE $APP_PORT/tcp
ENTRYPOINT [ "bun", "run", "app.js" ]