pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
162 B
13 lines
162 B
FROM node:20
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json /app/
|
|
|
|
RUN npm install
|
|
|
|
RUN npx -y playwright install --with-deps
|
|
|
|
COPY ./ /app/
|
|
|
|
ARG VITE_API_URL=${VITE_API_URL}
|
|
|