feat: Add Terraform configuration for GCP infrastructure and Docker setup

This commit is contained in:
jon brookes 2025-09-08 12:15:29 +01:00
parent 94499fd16e
commit 538fed9a66
10 changed files with 283 additions and 0 deletions

10
gcloud/tf/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.12-slim
# Install dependencies
RUN pip install --no-cache-dir gunicorn httpbin
# Expose the application port
EXPOSE 80
# Launch the application
CMD ["gunicorn", "-b", "0.0.0.0:80", "httpbin:app"]