Sign in
bazel
/
continuous-integration
/
bd271932189c4b5e14ab17f1ff004c84b386e4be
/
.
/
dashboard
/
client
/
Dockerfile
blob: c73b41122b12c892c146ed9811509088c079727a [
file
]
FROM node
:
14
-
alpine
WORKDIR
/
app
# Install app dependencies
COPY
package
.
json yarn
.
lock
./
RUN yarn
# Build app
COPY
.
./
RUN yarn build
ENTRYPOINT
[
"yarn"
,
"start"
]