mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
2fdd43c307
* ADD with-firebase-hosting-and-docker example * Improve doc
11 lines
216 B
Docker
11 lines
216 B
Docker
FROM node:8.11.1-alpine AS base
|
|
|
|
ARG NODE_ENV
|
|
ENV NODE_ENV $NODE_ENV
|
|
|
|
# Install package dependencies
|
|
RUN yarn global add firebase-tools @google-cloud/functions-emulator --ignore-engines
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|