mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-26 11:36:20 +00:00
sitio: migrar al iniciar
This commit is contained in:
parent
4f1ea65de0
commit
7ae225b1d6
2 changed files with 2 additions and 1 deletions
|
@ -19,9 +19,10 @@ COPY --from=build /usr/src/app/sitio/package.json package.real.json
|
||||||
RUN sh -c 'echo {\"name\":\"sitio\",\"type\":\"module\",\"dependencies\":$(jq .dependencies < package.real.json)} > package.json' && npm install
|
RUN sh -c 'echo {\"name\":\"sitio\",\"type\":\"module\",\"dependencies\":$(jq .dependencies < package.real.json)} > package.json' && npm install
|
||||||
COPY --from=build /usr/src/app/db-datos node_modules/db-datos
|
COPY --from=build /usr/src/app/db-datos node_modules/db-datos
|
||||||
COPY --from=build /usr/src/app/sitio/build .
|
COPY --from=build /usr/src/app/sitio/build .
|
||||||
|
COPY --from=build /usr/src/app/sitio/src/migrate.js .
|
||||||
COPY --from=build /usr/src/app/db-datos/drizzle .
|
COPY --from=build /usr/src/app/db-datos/drizzle .
|
||||||
|
|
||||||
ENV DB_PATH=/db/db.db
|
ENV DB_PATH=/db/db.db
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
CMD ["node", "."]
|
CMD "node migrate.js && node ."
|
Loading…
Reference in a new issue