Files
qwik/Dockerfile
2022-11-14 09:08:08 +01:00

9 lines
205 B
Docker

FROM node:16.12.0-buster
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ADD . /
ENV PATH="/root/.cargo/bin:${PATH}"
RUN make install-rust-deps
RUN pnpm install
RUN pnpm build