Skip to content

Commit

Permalink
fix(#91)/Corrigindo outro caminho no Dockerfile
Browse files Browse the repository at this point in the history
ajusta comando COPY para manter consistência

- Altera `COPY server/ /app/` para `COPY . /app/` para copiar todos os arquivos corretamente.
  • Loading branch information
Ana-Luiza-SC authored Feb 1, 2025
1 parent 5ce7cba commit de0e0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY requirements.txt /app/

RUN pip install -r requirements.txt

COPY server/ /app/
COPY . /app/

EXPOSE 8000

Expand Down

0 comments on commit de0e0c2

Please sign in to comment.