trepa-web/.devcontainer/Dockerfile
qpismont de0eb13032 Update configuration and dependencies; remove unused components and refactor login handling
- Added server port configuration in `astro.config.mjs`.
- Updated Biome schema version in `biome.json`.
- Updated dependencies in `package.json` to latest versions.
- Introduced new devcontainer configuration files for development setup.
- Removed unused components related to movie search and forms.
- Refactored login handling with new Astro components for better error management.
- Adjusted layouts for improved structure and user experience.
2025-03-27 22:08:15 +00:00

7 lines
No EOL
131 B
Docker

FROM debian:12
WORKDIR /app
RUN apt update &&\
apt install git curl unzip -y &&\
curl -fsSL https://bun.sh/install | bash