add Dockerfile and build instructions

This commit is contained in:
Pierre de Lacroix 2025-11-14 15:59:11 +01:00
parent bc8b5dc172
commit e3374d3f8a
Signed by untrusted user who does not match committer: lateralus23
GPG key ID: C20C17EC0D98B2DF
2 changed files with 24 additions and 0 deletions

18
README.md Normal file
View file

@ -0,0 +1,18 @@
# Interhack Camp Website 2026
## Build the Docker image
We use Docker for deploying on the Interhack infra. Until we have a proper CI, we need to build manually.
First, login to the Docker registry:
```bash
docker login git.interhacker.space
```
Then, build and push to the registry:
```bash
docker build -t git.interhacker.space/interhack/camp-website-2026:latest .
docker push git.interhacker.space/interhack/camp-website-2026:latest
```