fix: ensure data directory exists on docker image

This commit is contained in:
Stavros
2025-10-10 15:34:09 +03:00
parent ae8347fd28
commit 05d4dbd68e
3 changed files with 8 additions and 1 deletions

View File

@@ -47,6 +47,8 @@ WORKDIR /tinyauth
COPY --from=builder /tinyauth/tinyauth ./
RUN mkdir -p /data
EXPOSE 3000
VOLUME ["/data"]