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