Created
December 27, 2022 00:34
-
-
Save dedoussis/e3b9ef518a141e5d9153c65a7c1d8a5d to your computer and use it in GitHub Desktop.
Docker build of the icloud-hide-my-email browser extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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