feat: Add Terraform configuration for GCP infrastructure and Docker setup
This commit is contained in:
parent
94499fd16e
commit
538fed9a66
10 changed files with 283 additions and 0 deletions
10
gcloud/tf/Dockerfile
Normal file
10
gcloud/tf/Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue