Skip to content

Instantly share code, notes, and snippets.

@dedoussis
Created December 27, 2022 00:34
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 dedoussis/e3b9ef518a141e5d9153c65a7c1d8a5d to your computer and use it in GitHub Desktop.
Save dedoussis/e3b9ef518a141e5d9153c65a7c1d8a5d to your computer and use it in GitHub Desktop.
Docker build of the icloud-hide-my-email browser extension
# Place this dockerfile in the root dir of this repo: https://github.com/dedoussis/icloud-hide-my-email-browser-extension
FROM node:18-alpine
RUN apk upgrade && apk add --update --no-cache --virtual .builds-deps build-base python3
COPY . /opt/icloud-hide-my-email-extension
WORKDIR /opt/icloud-hide-my-email-extension
RUN npm ci && npm run build:mv2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment