mirror of
https://github.com/kemko/reproxy.git
synced 2026-01-08 03:05:57 +03:00
by @akellbl4 * make cool site for reproxy * remove meta tags with images * fix dark theme * flix styles for sidebar nav * add scroll in sidebar * fix dark theme * fix markdown * remove package lock * add package lock to ignore * add update date and edit button * add build command * move target to public * add build * use gitignore * add logos * Changes - add meta - add close button * add style for code tag * fix favicon color in safari * add logo styles * update favicon * add classic ico favicon * update touch icon * fix sharing images * fix logo * move data to site data file * add fancy mate glass effect on header * make readme as site base * update logo update logo * add stretching width for the content * add dockerfile * fix dark theme bugs * remove usless props * fix logo * fix node version * replce logo for the site * fix path to logo in readme * add more space on logo in readme * fix logo size in readme
12 lines
138 B
Docker
12 lines
138 B
Docker
FROM node:14-alpine
|
|
|
|
WORKDIR build
|
|
|
|
COPY . /build
|
|
RUN yarn --frozen-lockfile && \
|
|
yarn build && \
|
|
ls -la /public
|
|
|
|
CMD ["sleep", "100"]
|
|
|