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