2020-07-02 14:21:16 +08:00
|
|
|
FROM node:10.15.1
|
2020-07-02 14:25:19 +08:00
|
|
|
WORKDIR cloud_functions/functions
|
2020-07-02 14:31:04 +08:00
|
|
|
COPY cloud_functions/functions/package.json ./
|
2020-07-02 14:39:20 +08:00
|
|
|
RUN yarn install
|
2020-07-02 14:21:16 +08:00
|
|
|
COPY . .
|