This repository has been archived on 2025-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
pontus-mail/Dockerfile
2025-01-19 18:32:44 -05:00

7 lines
135 B
Docker

FROM oven/bun:latest
WORKDIR /usr/src/app
COPY package*.json ./
RUN bun install --production
COPY . .
EXPOSE 3000
CMD ["bun", "app.js"]