Created
April 24, 2023 09:33
-
-
Save katzefudder/96d57b66c0a3c9b721a0d789d3c762db to your computer and use it in GitHub Desktop.
NodeJS Container Image
This file contains 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
FROM alpine:3.17 | |
ENV NODEJS_VERSION "18.12.1-r0" | |
ENV HOST=0.0.0.0 | |
RUN apk --update --no-cache add curl bash nodejs=$NODEJS_VERSION npm | |
WORKDIR /var/www | |
RUN npm install -D tailwindcss@latest postcss@latest autoprefixer@latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment