add frontend step to docker binary

This commit is contained in:
A.Unger
2020-05-22 10:44:58 +02:00
parent 97359589f1
commit 1747231bb0

View File

@@ -312,6 +312,15 @@ def binary(ctx, name):
'arch': 'amd64',
},
'steps': [
{
'name': 'frontend',
'image': 'webhippie/nodejs:latest',
'pull': 'always',
'commands': [
'yarn install --frozen-lockfile',
'yarn build',
],
},
{
'name': 'generate',
'image': 'webhippie/golang:1.13',