This commit is contained in:
2024-09-22 12:05:36 +02:00
parent a1acb52211
commit 2566beef6c
3 changed files with 5 additions and 7 deletions

7
.gitignore vendored
View File

@@ -1,6 +1 @@
################################################################################ data/*
# Diese .gitignore-Datei wurde von Microsoft(R) Visual Studio automatisch erstellt.
################################################################################
/backend/Beatmaps.db
data/*

3
backend/.gitignore vendored
View File

@@ -1,3 +1,6 @@
.vs/ .vs/
bin/ bin/
obj/ obj/
*.db
*.env

View File

@@ -13,7 +13,7 @@ FROM ubuntu:latest
WORKDIR /app WORKDIR /app
COPY --from=builder /app/main . COPY --from=builder /app/main .
COPY --from=builder /app/dev.env . COPY --from=builder /app/*.env .
EXPOSE 80 EXPOSE 80