Simply remove permission

This commit is contained in:
Bruno Bernardino 2025-09-26 20:23:32 +01:00
parent 0e1544b07b
commit 9b957b6808
No known key found for this signature in database
GPG key ID: D1B0A69ADD114ECE

View file

@ -6,8 +6,15 @@ RUN apt-get update && apt-get install -y make
WORKDIR /app
COPY . .
# These steps will be re-run upon each file change in your working directory:
ADD . /app
RUN rm -fr node_modules _fresh
# Build fresh
RUN deno task build
# Compile the main app so that it doesn't need to be compiled each startup/entry.
RUN deno cache _fresh/server.js
# Allow the crons to start