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