Skip to content

Instantly share code, notes, and snippets.

@wzieba
Created October 14, 2019 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wzieba/2c815628cdf7585ccd2e3ca56a3c9d18 to your computer and use it in GitHub Desktop.
Save wzieba/2c815628cdf7585ccd2e3ca56a3c9d18 to your computer and use it in GitHub Desktop.
FROM node:12.10.0-alpine
WORKDIR /app
COPY . /app
RUN npm install -g firebase-tools \
&& apk update \
&& apk add git
RUN chmod +x /app/entrypoint.sh
ENTRYPOINT [ "/app/entrypoint.sh" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment