mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
11 lines
244 B
Docker
11 lines
244 B
Docker
# This docker file will update the web database with schema changes. Later it
|
|
# will be updated to do prisma migrations.
|
|
|
|
FROM --platform=linux/amd64 node:16.18.0 AS runner
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./website/ .
|
|
|
|
CMD ["npx", "prisma", "db", "push"]
|