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

7 lines
135 B
Docker
Raw Permalink Normal View History

2025-01-19 18:32:44 -05:00
FROM oven/bun:latest
2024-12-03 22:36:16 -05:00
WORKDIR /usr/src/app
COPY package*.json ./
2025-01-19 18:32:44 -05:00
RUN bun install --production
2024-12-03 22:36:16 -05:00
COPY . .
EXPOSE 3000
2025-01-19 18:32:44 -05:00
CMD ["bun", "app.js"]