Add Deno test supported & RegExp construction at route creation time

This commit is contained in:
2022-07-03 19:15:42 +00:00
committed by GitHub
parent 6559a3f134
commit 87744a2b25
10 changed files with 153 additions and 40 deletions

View File

@ -1,14 +1,20 @@
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=16-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
FROM debian:bullseye as tjs
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>
RUN apt-get update -y && apt install cmake build-essential curl libcurl4-openssl-dev git -y
# [Optional] Uncomment if you want to install an additional version of node using nvm
# ARG EXTRA_NODE_VERSION=10
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
WORKDIR /
# [Optional] Uncomment if you want to install more global node packages
# RUN su node -c "npm install -g <your-package-list -here>"
RUN git clone --recursive https://github.com/saghul/txiki.js --shallow-submodules && cd txiki.js && \
make
FROM denoland/deno:bin AS deno
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:16-bullseye
COPY --from=deno /deno /usr/local/bin/deno
COPY --from=tjs /txiki.js/build/tjs /usr/local/bin/tjs
RUN su node -c "npm install -g esbuild webpack jest ts-node"
ARG EXTRA_NODE_VERSION=14
RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"