new file: authentication/.env

new file:   authentication/Dockerfile
	new file:   authentication/Makefile
	new file:   authentication/__pycache__/main.cpython-313.pyc
	new file:   authentication/database-migration/Dockerfile
	new file:   authentication/database-migration/data.db
	new file:   authentication/database-migration/db_migration.py
	new file:   authentication/database-migration/migration.py
	new file:   authentication/database-migration/requirements.txt
	new file:   authentication/docker-compose.migration.yml
	new file:   authentication/docker-compose.yml
	new file:   authentication/main.py
	new file:   authentication/requirements.txt
This commit is contained in:
2025-12-19 16:27:47 +01:00
parent 16246ae086
commit 94574e32ea
13 changed files with 219 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 1234
CMD ["python3", "main.py"]