mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
[docker] Copy all files in initial pass
Efficient layers in the build stage aren't really useful, as we're only uploading layers from the runtime stage anyway
This commit is contained in:
parent
3a02f5492f
commit
a5b072016a
1 changed files with 2 additions and 10 deletions
12
Dockerfile
12
Dockerfile
|
@ -6,15 +6,10 @@ WORKDIR /iceshrimp
|
|||
# Install compilation dependencies
|
||||
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm vips
|
||||
|
||||
# Copy only the dependency-related files first, to cache efficiently
|
||||
COPY package.json yarn.lock .pnp.cjs .pnp.loader.mjs .yarnrc.yml .env.yarn ./
|
||||
COPY packages/backend/package.json packages/backend/package.json
|
||||
COPY packages/client/package.json packages/client/package.json
|
||||
COPY packages/sw/package.json packages/sw/package.json
|
||||
COPY packages/iceshrimp-js/package.json packages/iceshrimp-js/package.json
|
||||
# Copy in all files for the build
|
||||
COPY . ./
|
||||
|
||||
# Prepare yarn cache
|
||||
COPY .yarn/cache .yarn/cache
|
||||
RUN --mount=type=cache,target=/iceshrimp/.yarncache cp -Tr .yarncache .yarn
|
||||
|
||||
# Configure corepack and install dev mode dependencies for compilation
|
||||
|
@ -23,9 +18,6 @@ RUN corepack enable && corepack prepare --activate && yarn
|
|||
# Save yarn cache
|
||||
RUN --mount=type=cache,target=/iceshrimp/.yarncache rm -rf .yarncache/* && cp -Tr .yarn .yarncache
|
||||
|
||||
# Copy in the rest of the files to compile
|
||||
COPY . ./
|
||||
|
||||
# Build the thing
|
||||
RUN env NODE_ENV=production yarn build
|
||||
|
||||
|
|
Loading…
Reference in a new issue