maps-service/web/Containerfile

21 lines
540 B
Plaintext
Raw Normal View History

2024-12-11 22:07:15 +00:00
FROM oven/bun:latest
2024-12-11 01:03:18 +00:00
2024-12-11 22:07:15 +00:00
WORKDIR /app
2024-12-11 01:03:18 +00:00
2024-12-12 22:06:30 +00:00
COPY . .
2024-12-11 01:03:18 +00:00
2024-12-12 22:06:30 +00:00
EXPOSE 3000
2024-12-11 01:03:18 +00:00
2024-12-11 22:07:15 +00:00
ENV NEXT_TELEMETRY_DISABLED=1
2024-12-11 01:03:18 +00:00
2024-12-11 22:07:15 +00:00
RUN bun install
RUN bun run build
RUN rm -rf src eslint.config.mjs tsconfig.json
RUN bun remove "@emotion/react" "@emotion/styled" "@mui/icons-material" "@mui/material" "react" "react-dom" "sass"
# bun prune --production
# Uh-oh. bun prune is a subcommand reserved for future use by Bun.
RUN bun remove "typescript" "@types/node" "@types/react" "@types/react-dom" "eslint" "eslint-config-next" "@eslint/eslintrc"
2024-12-11 22:07:15 +00:00
ENTRYPOINT ["bun", "run", "start"]