File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,16 @@ RUN /usr/bin/apt-install Aptfile
3434
3535USER noteable
3636
37- # use the deno installer and upgrade to the latest (canary) build
37+ # use the deno installer and upgrade to the specified (canary) build
3838# https://docs.deno.com/runtime/manual/references/contributing/release_schedule
3939ENV DENO_INSTALL=/srv/noteable
4040SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
4141RUN curl -fsSL https://deno.land/x/install/install.sh | sh
4242# deno installs to `DENO_INSTALL/bin`, so we'll add to PATH for follow-on deno commands
4343ENV PATH="${DENO_INSTALL}/bin/:${PATH}"
44- RUN deno upgrade --canary
44+ RUN deno upgrade \
45+ --canary \
46+ --version=87ddd1f04d2b71aadb3a8a5fb3e4ac15988947c1
4547
4648# the kernel needs the deno kernelspec discoverable locally before it can start
4749# hadolint ignore=DL3059
You can’t perform that action at this time.
0 commit comments