Files
pawctioneer-bot/.devcontainer/Dockerfile.devcontainer
Dylan Knutson 34de9b6d59 Major refactor: restructure new listing command and update data models
- Refactor new_listing from single file to modular structure
- Add handler factory pattern for state management
- Improve keyboard utilities and validations
- Update database models for bid, listing, and user systems
- Add new types: listing_duration, user_row_id
- Remove deprecated user_id type
- Update Docker configuration
- Enhance test utilities and message handling
2025-08-29 10:21:39 -07:00

6 lines
220 B
Docker

FROM mcr.microsoft.com/devcontainers/rust:1-1-bookworm
RUN sudo apt update && \
sudo apt install -qqy --no-install-recommends --no-install-suggests sqlite3 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*