FROM oven/bun:1.3.11-alpine

WORKDIR /app
COPY server.ts ./

# wget is used by the docker-compose healthcheck.
RUN apk add --no-cache wget

EXPOSE 8081
CMD ["bun", "run", "server.ts"]
