Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.

Commit 64a3ef8

Browse files
Merge branch 'dev'
2 parents cbcc225 + d7a6e5f commit 64a3ef8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,17 +239,17 @@ jobs:
239239
cache-from: type=gha
240240
cache-to: type=gha,mode=max
241241

242-
# Cria um Dockerfile simples para o banco (baseado em PostgreSQL oficial)
243-
- name: Create DB Dockerfile (PostgreSQL base)
242+
# Cria um Dockerfile simples para o banco (baseado em MySQL oficial)
243+
- name: Create DB Dockerfile (MySQL base)
244244
run: |
245245
mkdir -p docker
246246
cat > docker/Dockerfile.db << 'EOF'
247-
FROM postgres:16
248-
# Ajustes opcionais de configuração poderiam ser adicionados aqui (volumes, conf, etc.)
247+
FROM mysql:8.0
248+
# Ajustes opcionais de configuração poderiam ser adicionados aqui (volumes, conf, envs, etc.)
249249
EOF
250250
251251
# Constrói imagem do banco de dados a partir do Dockerfile.db
252-
- name: Build DB Docker image (PostgreSQL)
252+
- name: Build DB Docker image (MySQL)
253253
uses: docker/build-push-action@v6
254254
with:
255255
context: .

0 commit comments

Comments
 (0)