Skip to content

Instantly share code, notes, and snippets.

@ValentinFunk
Created January 30, 2018 10:10
Show Gist options
  • Save ValentinFunk/3cbd5ebf2a48b13605ea28429ae774de to your computer and use it in GitHub Desktop.
Save ValentinFunk/3cbd5ebf2a48b13605ea28429ae774de to your computer and use it in GitHub Desktop.
Dockerfile for firebase bug
FROM node:6.11-slim
RUN yarn global add firebase-tools
RUN mkdir app
WORKDIR /app
RUN mkdir functions
COPY functions/package.json functions/package.json
RUN cd functions && yarn
COPY . .
WORKDIR /app/functions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment