Fix entrypoint

This commit is contained in:
David Boreham 2022-09-28 21:00:57 -06:00
parent 7a32c70152
commit 0c41f1bed3

View File

@ -1,3 +1,4 @@
# TODO: move this into the cerc-io/laconic-sdk (aka client) repo
FROM node:16.17.1-alpine3.16
ARG NPM_AUTH_TOKEN
@ -8,3 +9,5 @@ COPY . .
RUN echo //npm.pkg.github.com/:_authToken=$NPM_AUTH_TOKEN > ~/.npmrc
RUN apk --update --no-cache add git && yarn && yarn build
ENTRYPOINT ["/app/bin/laconic"]