Sign in
◑
Theme
bazel
/
continuous-integration
/
14a69e4a696a7f3ea50239d6e815d4f55e34dfd0
/
.
/
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"
]