Upgrade deno

This commit is contained in:
Bruno Bernardino 2025-09-26 20:30:19 +01:00
parent 9b957b6808
commit afd0c3c63f
No known key found for this signature in database
GPG key ID: D1B0A69ADD114ECE
2 changed files with 7 additions and 2 deletions

2
.dvmrc
View file

@ -1 +1 @@
2.5.1
2.5.2

View file

@ -1,4 +1,4 @@
FROM denoland/deno:ubuntu-2.5.1
FROM denoland/deno:ubuntu-2.5.2
EXPOSE 8000
@ -14,6 +14,11 @@ RUN rm -fr node_modules _fresh
# Build fresh
RUN deno task build
RUN chown -R deno:deno /app
# Prefer not to run as root.
USER deno
# Compile the main app so that it doesn't need to be compiled each startup/entry.
RUN deno cache _fresh/server.js