Add _FILE environment variable loading

This commit is contained in:
3wc
2024-05-06 13:47:53 -03:00
parent 3a6a7e870a
commit daefcfcaeb
2 changed files with 35 additions and 1 deletions

View File

@ -26,4 +26,6 @@ COPY --from=build /build/tsconfig.json ./tsconfig.json
COPY --from=build /build/dist ./dist
COPY --from=build /build/build ./build
EXPOSE 3000
CMD ["yarn", "serve"]
COPY docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["yarn", "serve"]