mirror of
https://github.com/umputun/reproxy.git
synced 2024-11-23 09:27:22 +03:00
14 lines
184 B
Docker
14 lines
184 B
Docker
FROM node:14-alpine
|
|
|
|
WORKDIR build
|
|
|
|
COPY site/ /build
|
|
COPY README.md /build/src/index.md
|
|
|
|
RUN yarn --frozen-lockfile && \
|
|
yarn build && \
|
|
ls -la /build/public
|
|
|
|
CMD ["sleep", "100"]
|
|
|