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-socat-windows

12 lines
300 B

FROM mcr.microsoft.com/windows/servercore:1809
RUN mkdir socat
ENV SOCAT_URL=https://github.com/tech128/socat-1.7.3.0-windows/archive/refs/heads/master.zip
RUN curl %SOCAT_URL% -L -o socat.zip
RUN tar -xf socat.zip -C socat --strip-components=1
ENV PATH C:\\socat;%PATH%
ENTRYPOINT ["socat.exe"]