0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

Update Docker instructions in support of #1930

Updates README.DOCKER.md and Dockerfile
This commit is contained in:
David Bolack
2024-12-20 20:33:12 -06:00
parent dceb5e516b
commit 674fb6ff57
2 changed files with 104 additions and 8 deletions

View File

@@ -9,6 +9,7 @@ WORKDIR /usr/src/app
# Copy package.json into the image, then run yarn install
# This improves caching so we don't have to download the dependencies every time the code changes
COPY package.json ./
COPY config/default.json config/default.json
# --ignore-scripts tells yarn not to run postbuild. We run it explicitly later
RUN npm install --ignore-scripts