infctl-cli/gcloud/tf/Dockerfile

11 lines
213 B
Text
Raw Permalink Normal View History

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"]