28 lines
765 B
Markdown
28 lines
765 B
Markdown
# 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
|
|
```
|
|
|
|
## generate status PDF
|
|
|
|
Status are stored in [this online pad](https://md.interhacker.space/u2VNUSO6S36xx5Ensc3FCw).
|
|
|
|
PDF can be generated thanks to `pandoc` and the good old `curl` this way:
|
|
|
|
```sh
|
|
curl -s https://md.interhacker.space/u2VNUSO6S36xx5Ensc3FCw/download | pandoc -V geometry:margin=3cm -o status.pdf
|
|
```
|