Sign in
bazel
/
continuous-integration
/
a743628e439c6cec5df3ba1446e543912321cc84
/
.
/
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"
]