FROM oven/bun:1.3.11-alpine WORKDIR /app COPY server.ts ./ RUN apk add --no-cache wget EXPOSE 8082 CMD ["bun", "run", "server.ts"]