Initial commit

This commit is contained in:
2026-06-09 19:29:34 +02:00
commit 2d8602609c
5 changed files with 158 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM python:3.12-slim
# Install system dependencies and GnuCOBOL compiler
RUN apt-get update && apt-get install -y \
gnucobol \
gcc \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Install Python framework dependencies
RUN pip install --no-cache-dir fastapi uvicorn pyyaml
# Copy everything over
COPY . .
EXPOSE 8000
CMD ["python", "main.py"]