Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
fix: dockerfile perms
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo authored Sep 12, 2023
1 parent 7b93254 commit bf2cdad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ FROM node:16-alpine as builder
RUN chown -R 1000:1000 /home/node && \
chmod -R 755 /home/node && \
chown 1000:1000 /tmp && \
chmod 1777 /tmp
chmod 1777 /tmp && \
mkdir /app && \
chown 1000:1000 /app

RUN apk add --no-cache gcc autoconf automake build-base libpng-dev nasm

Expand Down

0 comments on commit bf2cdad

Please sign in to comment.