Skip to content

Instantly share code, notes, and snippets.

@katzefudder
Created April 24, 2023 09:33
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 katzefudder/96d57b66c0a3c9b721a0d789d3c762db to your computer and use it in GitHub Desktop.
Save katzefudder/96d57b66c0a3c9b721a0d789d3c762db to your computer and use it in GitHub Desktop.
NodeJS Container Image
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