Skip to content

Commit

Permalink
build(docker): create temp dir in correct parent dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Feb 3, 2023
1 parent c64c86b commit 9441c14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ FROM node:18-bullseye-slim
WORKDIR /usr/app

# Create temp folder for files to be stored whilst being converted
RUN mkdir -p ./src/temp/ && \
RUN mkdir -p ./dist/temp/ && \
## Allow for temp folder to be manipulated
chown -R node ./src/
chown -R node ./dist/

# Install OS dependencies
# Curl needed for healthcheck command
Expand Down

0 comments on commit 9441c14

Please sign in to comment.