You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/build-support-windows/Dockerfile-fortio-windows

13 lines
295 B

FROM mcr.microsoft.com/windows/nanoserver:1809
RUN mkdir fortio
ENV FORTIO_URL=https://github.com/fortio/fortio/releases/download/v1.33.0/fortio_win_1.33.0.zip
RUN curl %FORTIO_URL% -L -o fortio.zip
RUN tar -xf fortio.zip -C fortio
ENV PATH C:\\fortio;%PATH%
CMD [ "fortio.exe", "server" ]