ci(docker): attempt to fix production deploy, with env management

This commit is contained in:
Amruth Pillai
2022-03-05 14:36:38 +01:00
parent a4983ac6bc
commit 37f0ab3bca
5 changed files with 29 additions and 199 deletions

View File

@ -136,7 +136,11 @@ const Home: NextPage = () => {
</div>
</section>
<Footer className="font-semibold leading-5 opacity-50" />
<footer>
<Footer className="font-semibold leading-5 opacity-50" />
<div>v{process.env.appVersion}</div>
</footer>
</main>
);
};

View File

@ -1,5 +1,9 @@
.container {
@apply m-6 grid gap-8 text-center md:m-8 md:text-left;
footer > div {
@apply text-xs font-medium opacity-50 mt-2;
}
}
.header {