mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-12 04:57:30 -07:00
26 lines
490 B
Docker
26 lines
490 B
Docker
FROM node:18-alpine
|
|
ENV YARN_CHECKSUM_BEHAVIOR=update
|
|
ARG NODE_ENV=production
|
|
WORKDIR /calckey
|
|
|
|
# Copy Files
|
|
COPY . ./
|
|
|
|
# Install Dependencies
|
|
RUN apk update
|
|
RUN apk add git ffmpeg tini alpine-sdk python3
|
|
|
|
# Configure corepack and yarn
|
|
RUN corepack enable
|
|
RUN yarn set version berry
|
|
RUN yarn plugin import workspace-tools
|
|
|
|
# Install Dependencies
|
|
RUN yarn install
|
|
RUN yarn build
|
|
|
|
# Remove git files
|
|
RUN rm -rf .git
|
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
|
CMD [ "yarn", "run", "migrateandstart" ]
|