update db-seed

This commit is contained in:
MaKarin
2026-04-04 10:07:10 +03:00
parent 1a8fd94858
commit 873550ae9b
3 changed files with 26 additions and 9 deletions

10
db-seed/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM postgres:16
WORKDIR /seed
COPY equipment-import.sql /seed/equipment-import.sql
COPY db-seed/import.sh /seed/import.sh
RUN chmod +x /seed/import.sh
CMD ["/seed/import.sh"]