staticwebapps-cli/Dockerfile

10 lines
137 B
Text
Raw Permalink Normal View History

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