staticwebapps-cli/Dockerfile

10 lines
137 B
Text
Raw Normal View History

2023-08-28 15:34:35 +02:00
# syntax=docker/dockerfile:1
FROM node:20
ENV NODE_ENV=production
WORKDIR /app
RUN npm install -g @azure/static-web-apps-cli
COPY . .