grant deno user permission to write to app folder used if the dockerfile

This commit is contained in:
jo-mut 2024-04-26 12:04:31 +02:00
parent 009b9a264e
commit 5a8c2e63c1
No known key found for this signature in database
GPG Key ID: 76AE8CD103294A70
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
FROM denoland/deno:1.42.4
WORKDIR /app
RUN chown -R deno:deno /app
USER deno
COPY deps.ts .