2022-10-25 23:04:19 -06:00
|
|
|
FROM node:18-alpine
|
2022-08-07 21:32:59 -06:00
|
|
|
ENV YARN_CHECKSUM_BEHAVIOR=update
|
2022-05-15 07:22:06 -06:00
|
|
|
ARG NODE_ENV=production
|
2022-08-22 23:11:29 -06:00
|
|
|
WORKDIR /calckey
|
2018-10-09 00:09:50 -06:00
|
|
|
|
2022-08-07 21:32:59 -06:00
|
|
|
# Copy Files
|
2019-04-07 06:50:36 -06:00
|
|
|
COPY . ./
|
2021-09-04 11:18:12 -06:00
|
|
|
|
2022-08-07 21:32:59 -06:00
|
|
|
# Install Dependencies
|
|
|
|
RUN apk update
|
2022-12-09 20:18:45 -07:00
|
|
|
RUN apk add git ffmpeg tini alpine-sdk python3
|
2022-08-07 21:32:59 -06:00
|
|
|
|
|
|
|
# Configure corepack and yarn
|
|
|
|
RUN corepack enable
|
2022-07-26 13:21:39 -06:00
|
|
|
RUN yarn set version berry
|
2022-08-07 21:32:59 -06:00
|
|
|
RUN yarn plugin import workspace-tools
|
|
|
|
|
|
|
|
# Install Dependencies
|
2022-07-08 02:17:21 -06:00
|
|
|
RUN yarn install
|
|
|
|
RUN yarn build
|
2018-10-09 00:09:50 -06:00
|
|
|
|
2022-08-07 21:32:59 -06:00
|
|
|
# Remove git files
|
|
|
|
RUN rm -rf .git
|
2018-10-30 06:18:03 -06:00
|
|
|
|
2022-08-07 21:32:59 -06:00
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
2022-08-08 00:22:49 -06:00
|
|
|
CMD [ "yarn", "run", "migrateandstart" ]
|