mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-21 16:33:48 +01:00
50 lines
1.4 KiB
Docker
50 lines
1.4 KiB
Docker
# syntax = docker/dockerfile:1.2
|
|
## Install dev and compilation dependencies, build files
|
|
FROM alpine:3.20 as build
|
|
WORKDIR /trashposs
|
|
|
|
# Install compilation dependencies
|
|
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm vips
|
|
|
|
# Copy in all files for the build
|
|
COPY . ./
|
|
|
|
# Prepare yarn cache
|
|
RUN --mount=type=cache,target=/trashposs/.yarncache cp -Tr .yarncache .yarn
|
|
|
|
# Configure corepack and install dev mode dependencies for compilation
|
|
RUN corepack enable && corepack prepare --activate && yarn --immutable
|
|
|
|
# Save yarn cache
|
|
RUN --mount=type=cache,target=/trashposs/.yarncache rm -rf .yarncache/* && cp -Tr .yarn .yarncache
|
|
|
|
# Build the thing
|
|
RUN env NODE_ENV=production yarn build
|
|
|
|
# Prepare focused yarn cache
|
|
RUN --mount=type=cache,target=/trashposs/.yarncache_focused cp -Tr .yarncache_focused .yarn
|
|
|
|
# Remove dev deps
|
|
RUN yarn focus-production
|
|
|
|
# Save focused yarn cache
|
|
RUN --mount=type=cache,target=/trashposs/.yarncache_focused rm -rf .yarncache/* && cp -Tr .yarn .yarncache_focused
|
|
|
|
## Runtime container
|
|
FROM alpine:3.20
|
|
WORKDIR /trashposs
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-current libheif-dev
|
|
|
|
# Copy built files
|
|
COPY --from=build /trashposs /trashposs
|
|
|
|
# Configure corepack
|
|
RUN corepack enable && corepack prepare --activate
|
|
|
|
ENV NODE_ENV=production
|
|
VOLUME "/trashposs/files"
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
|
CMD [ "yarn", "run", "migrateandstart" ]
|