Skip to content

Commit

Permalink
chore: update Dockerfile to create .pylon folder
Browse files Browse the repository at this point in the history
This commit updates the Dockerfile to create the .pylon folder using the `mkdir -p` command instead of `mkdir`. This change ensures that the folder is created even if it already exists.
  • Loading branch information
schettn committed Jun 6, 2024
1 parent b0630f4 commit c7944b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ COPY . .
ENV NODE_ENV=production

# Create .pylon folder (mkdir)
RUN mkdir .pylon
RUN mkdir -p .pylon
# RUN bun test
RUN bun run pylon build

Expand Down

0 comments on commit c7944b5

Please sign in to comment.