diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,9 +1,13 @@ FROM eciavatta/caronte-env:latest +ENV GIN_MODE release + COPY . /caronte WORKDIR /caronte RUN go mod download && go build +RUN npm i --global yarn && cd frontend && yarn install && yarn build + CMD ./caronte |