From 49b97915b023001cd881ea57b915d42c9f65897d Mon Sep 17 00:00:00 2001 From: Brad Ganley Date: Fri, 3 Jan 2025 19:31:54 +0000 Subject: [PATCH] fixed permissions typo in dockerfile, image will work without bind mount now --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ce57d19..4384967 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM oven/bun:latest AS base WORKDIR /usr/src/app -RUN mkdir /sessionData && chmod 177 /sessionData +RUN mkdir /sessionData && chmod 777 /sessionData # install dependencies into temp directory # this will cache them and speed up future builds FROM base AS install