This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
werefox-dev/Dockerfile
2021-04-19 04:14:21 +00:00

10 lines
244 B
Docker

FROM node:12-alpine
RUN apk update && \
apk add --no-cache bash
RUN npm install --save next && \
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest && \
npm install --save axios
WORKDIR /usr/src/app