mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
9298f205fc
* Fixed CSS for Settings.tsx + new Theme Shop design * reformat * More changes to UI CSS * Small CSS fixes for Settings.tsx, Account, Bots * Updated theme shop, settings pages, cleanup * chore: force sync language submodule * fix(sidebar): prevent items from shrinking * fix(push): fix timestamp and icon for push notifications * fix(voice): hide grant permission button after grant * chore: hide new shop / chevron before merge * chore(ci): bump node to v16 in dockerfile * fix(sidebar): change width of channel sidebar Co-authored-by: trashtemp <96388163+trashtemp@users.noreply.github.com>
20 lines
No EOL
361 B
Docker
20 lines
No EOL
361 B
Docker
FROM node:15-buster AS builder
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
|
|
RUN yarn --no-cache
|
|
|
|
COPY . .
|
|
COPY .env.build .env
|
|
RUN yarn add --dev @babel/plugin-proposal-decorators
|
|
RUN yarn typecheck
|
|
RUN yarn build
|
|
RUN npm prune --production
|
|
|
|
FROM node:16-buster
|
|
WORKDIR /usr/src/app
|
|
COPY --from=builder /usr/src/app .
|
|
|
|
EXPOSE 5000
|
|
CMD [ "yarn", "start:inject" ] |