mirror of
https://github.com/186526/handlers.js
synced 2024-10-13 00:29:43 +00:00
Add Deno test supported & RegExp construction at route creation time
This commit is contained in:
@ -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}"
|
||||
|
||||
Reference in New Issue
Block a user