2023-02-06 15:33:49 +00:00
|
|
|
FROM node:19-alpine as builder
|
|
|
|
WORKDIR /app
|
2023-02-27 18:49:11 +00:00
|
|
|
|
2023-02-06 15:33:49 +00:00
|
|
|
COPY package.json yarn.lock ./
|
|
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
RUN apk --update add patch
|
|
|
|
RUN patch next.config.js next-config.patch
|
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
FROM node:19-alpine as runner
|
|
|
|
WORKDIR /app
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
COPY --from=builder /app/package.json .
|
|
|
|
COPY --from=builder /app/yarn.lock .
|
|
|
|
COPY --from=builder /app/next.config.js .
|
|
|
|
COPY --from=builder /app/public ./public
|
|
|
|
COPY --from=builder /app/.next/standalone ./
|
|
|
|
COPY --from=builder /app/.next/static ./.next/static
|
2023-04-20 07:16:15 +00:00
|
|
|
COPY entrypoint.sh .
|
|
|
|
|
|
|
|
RUN apk add --no-cache --upgrade bash
|
|
|
|
RUN ["chmod", "+x", "./entrypoint.sh"]
|
|
|
|
ENTRYPOINT ["./entrypoint.sh"]
|
2023-02-06 15:33:49 +00:00
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["node", "server.js"]
|
|
|
|
|
|
|
|
# Labels
|
|
|
|
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
|
|
|
|
LABEL org.opencontainers.image.title="mars-fe"
|
|
|
|
LABEL org.opencontainers.image.description="Mars Protocol Osmosis Outpost Frontend"
|
|
|
|
LABEL org.opencontainers.image.authors="andrey.arapov@nixaid.com"
|
|
|
|
LABEL org.opencontainers.image.source=https://github.com/mars-protocol/interface
|