1
0
mirror of https://github.com/umputun/reproxy.git synced 2025-02-16 18:34:30 +02:00
reproxy/Dockerfile.site

14 lines
184 B
Docker
Raw Normal View History

FROM node:14-alpine
WORKDIR build
2021-04-16 14:04:54 -05:00
COPY site/ /build
COPY README.md /build/src/index.md
RUN yarn --frozen-lockfile && \
yarn build && \
2021-04-16 14:04:54 -05:00
ls -la /build/public
CMD ["sleep", "100"]