Azure-Samples / active-directory-aspnetcore-webapp-openidconnect-v2

An ASP.NET Core Web App which lets sign-in users (including in your org, many orgs, orgs + personal accounts, sovereign clouds) and call Web APIs (including Microsoft Graph)
MIT License
1.37k stars 983 forks source link

Create webpack.yml #732

Closed 231414806 closed 10 months ago

231414806 commented 11 months ago

Use a base image with Markdown to HTML conversion

FROM pandoc/core:latest

Copy the Markdown content into the container

COPY ./notebook-t.md/tmp/tu_archivo.md

Convert the Markdown file to HTML

RUN pandoc /tmp/notebook-t.pmd -o /var/www/html/index.html

Expose port 80 for serving the HTML content

EXPOSE 80

Start a web server to serve the HTML content

CMD ["sh", "-c", "cd /var/www/html && python3 -m http.server 80"]
estrategia:
  matriz:
    versión-nodo: [14.x, 16.x, 18.x]

pasos:
- usa: acciones/pago@v3

- nombre: Utilice Node.js ${{ matrix.node-version }}
  usa: acciones/setup-node@v3
  con:
    versión-nodo: ${{ matrix.node-version }}

- nombre: Construir
  correr: |
    instalación npm
    paquete web npx

{MooDevOp}

Summary of the changes (Less than 80 chars)

Description

{Detail}

Fixes #{bug number} (in this specific format)

jmprieur commented 11 months ago

what problem does it solve, @231414806 ?