Commit 11528bfe authored by Adriana Fernández-Fernández's avatar Adriana Fernández-Fernández
Browse files

Updates ignore files and python version

parent 22a8d42f
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+91 −0
Original line number Diff line number Diff line
# Git files
.git
.gitignore
.gitlab-ci.yml

# Documentation
README.md
CONTRIBUTING.md
LICENSE

# Docker files
Dockerfile
docker-compose.yaml
.dockerignore

# Python cache and virtual environments
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
env.bak/
venv.bak/
.venv/
src/__pycache__/
src/models/__pycache__/
src/controllers/__pycache__/
src/clients/__pycache__/
src/test/__pycache__/
src/adapters/__pycache__/
src/api/__pycache__/
src/adapters/tf_adapter/__pycache__/
src/adapters/fm_adapter/__pycache__/

# Testing and coverage
.coverage
.pytest_cache/
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log
logs/

# Temporary files
tmp/
temp/
*.tmp

# Node modules (if any)
node_modules/
npm-debug.log*

# Configuration files that shouldn't be in the image
src/conf/config.cfg
*.env
.env.local
.env.development
.env.test
.env.production

# Log files and directories
*.tgz
src/.log/

# Build artifacts
dist/
build/
 No newline at end of file
+12 −0
Original line number Diff line number Diff line
@@ -9,3 +9,15 @@ src/test/__pycache__/

# Files
src/conf/config.cfg

*.tgz

src/.log/

src/adapters/__pycache__/

src/api/__pycache__/

src/adapters/tf_adapter/__pycache__/

src/adapters/fm_adapter/__pycache__/
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
#                                                       #
#########################################################

FROM python:3.9
FROM python:3.12

# Set working directory
WORKDIR /usr/app