Skip to content

Commit 61eda40

Browse files
committed
fix: Dockerfile permissions error
1 parent ecd6161 commit 61eda40

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ RUN apt-get update && apt-get install -y \
3131
git tini \
3232
&& rm -rf /var/lib/apt/lists/*
3333

34-
RUN chown 1000:1000 /app/dist/build \
35-
&& chmod g+w /app/dist/build
34+
RUN mkdir -p /app/.data /app/.tmp \
35+
&& chown 1000:1000 /app/dist/build /app/.data /app/.tmp
3636

3737
USER 1000
3838

0 commit comments

Comments
 (0)