mirror of
https://github.com/bewcloud/bewcloud.git
synced 2026-03-11 08:54:49 +00:00
Simply remove permission
This commit is contained in:
parent
0e1544b07b
commit
9b957b6808
1 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue