mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 00:43:49 +01:00
[docker] Remove all unnecessary dependencies from Dockerfile
This commit is contained in:
parent
921bf1ca5f
commit
fbd3259893
27
Dockerfile
27
Dockerfile
@ -4,7 +4,7 @@ FROM alpine:3.18 as build
|
|||||||
WORKDIR /iceshrimp
|
WORKDIR /iceshrimp
|
||||||
|
|
||||||
# Install compilation dependencies
|
# Install compilation dependencies
|
||||||
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm vips
|
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm vips moreutils jq
|
||||||
|
|
||||||
# Copy only the dependency-related files first, to cache efficiently
|
# Copy only the dependency-related files first, to cache efficiently
|
||||||
COPY package.json yarn.lock .pnp.cjs .pnp.loader.mjs ./
|
COPY package.json yarn.lock .pnp.cjs .pnp.loader.mjs ./
|
||||||
@ -17,7 +17,7 @@ COPY packages/iceshrimp-js/package.json packages/iceshrimp-js/package.json
|
|||||||
COPY .yarn/cache .yarn/cache
|
COPY .yarn/cache .yarn/cache
|
||||||
RUN --mount=type=cache,target=/iceshrimp/.yarncache cp -Tr .yarncache .yarn
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache cp -Tr .yarncache .yarn
|
||||||
|
|
||||||
# Configure corepack and yarn, and install dev mode dependencies for compilation
|
# Configure corepack and install dev mode dependencies for compilation
|
||||||
RUN corepack enable && corepack prepare --activate && yarn
|
RUN corepack enable && corepack prepare --activate && yarn
|
||||||
|
|
||||||
# Save yarn cache
|
# Save yarn cache
|
||||||
@ -29,6 +29,16 @@ COPY . ./
|
|||||||
# Build the thing
|
# Build the thing
|
||||||
RUN env NODE_ENV=production yarn build
|
RUN env NODE_ENV=production yarn build
|
||||||
|
|
||||||
|
# Prepare focused yarn cache
|
||||||
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused cp -Tr .yarncache_focused .yarn
|
||||||
|
|
||||||
|
# Remove dev deps
|
||||||
|
RUN find packages package.json -name package.json | xargs -i sh -c "jq 'del(.devDependencies)' {} | sponge {}"
|
||||||
|
RUN yarn
|
||||||
|
|
||||||
|
# Save focused yarn cache
|
||||||
|
RUN --mount=type=cache,target=/iceshrimp/.yarncache_focused rm -rf .yarncache/* && cp -Tr .yarn .yarncache_focused
|
||||||
|
|
||||||
## Runtime container
|
## Runtime container
|
||||||
FROM alpine:3.18
|
FROM alpine:3.18
|
||||||
WORKDIR /iceshrimp
|
WORKDIR /iceshrimp
|
||||||
@ -36,17 +46,12 @@ WORKDIR /iceshrimp
|
|||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
|
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current
|
||||||
|
|
||||||
COPY . ./
|
# Copy built files
|
||||||
|
COPY --from=build /iceshrimp /iceshrimp
|
||||||
# Copy node modules
|
|
||||||
COPY --from=build /iceshrimp/.yarn /iceshrimp/.yarn
|
|
||||||
|
|
||||||
# Copy the finished compiled files
|
|
||||||
COPY --from=build /iceshrimp/built /iceshrimp/built
|
|
||||||
COPY --from=build /iceshrimp/packages/backend/built /iceshrimp/packages/backend/built
|
|
||||||
COPY --from=build /iceshrimp/packages/backend/assets/instance.css /iceshrimp/packages/backend/assets/instance.css
|
|
||||||
|
|
||||||
|
# Configure corepack
|
||||||
RUN corepack enable && corepack prepare --activate
|
RUN corepack enable && corepack prepare --activate
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
VOLUME "/iceshrimp/files"
|
VOLUME "/iceshrimp/files"
|
||||||
ENTRYPOINT [ "/sbin/tini", "--" ]
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
||||||
|
Loading…
Reference in New Issue
Block a user