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
34
34
35
35
USER noteable
36
36
37
- # use the deno installer and upgrade to the latest (canary) build
37
+ # use the deno installer and upgrade to the specified (canary) build
38
38
# https://docs.deno.com/runtime/manual/references/contributing/release_schedule
39
39
ENV DENO_INSTALL=/srv/noteable
40
40
SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
41
41
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
42
42
# deno installs to `DENO_INSTALL/bin`, so we'll add to PATH for follow-on deno commands
43
43
ENV PATH="${DENO_INSTALL}/bin/:${PATH}"
44
- RUN deno upgrade --canary
44
+ RUN deno upgrade \
45
+ --canary \
46
+ --version=87ddd1f04d2b71aadb3a8a5fb3e4ac15988947c1
45
47
46
48
# the kernel needs the deno kernelspec discoverable locally before it can start
47
49
# hadolint ignore=DL3059
You can’t perform that action at this time.
0 commit comments