ci: fix dockerfile to copy tests folder

This commit is contained in:
Nicolas Meienberger 2023-06-28 22:44:56 +02:00 committed by Nicolas Meienberger
parent 0d0cbf39f8
commit 8785187989
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,6 @@ Dockerfile*
# Tipi folder
logs/
tests/
state/
templates/
scripts/
@ -24,4 +23,4 @@ data/
apps/
app-data/
.github/
__mocks__/
__mocks__/

View file

@ -23,6 +23,7 @@ COPY ./esbuild.js ./esbuild.js
COPY ./tsconfig.json ./tsconfig.json
COPY ./next.config.mjs ./next.config.mjs
COPY ./public ./public
COPY ./tests ./tests
RUN npm run build