From e3374d3f8a4cc226d116080a1dac6defb454947f Mon Sep 17 00:00:00 2001 From: Pierre de Lacroix Date: Fri, 14 Nov 2025 15:59:11 +0100 Subject: [PATCH] add Dockerfile and build instructions --- Dockerfile | 6 ++++++ README.md | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ef53231 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM nginx:1.29-alpine + +COPY index.html poster.html /usr/share/nginx/html +COPY assets /usr/share/nginx/html/assets +COPY css /usr/share/nginx/html/css +COPY js /usr/share/nginx/html/js diff --git a/README.md b/README.md new file mode 100644 index 0000000..516293d --- /dev/null +++ b/README.md @@ -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 +```